ExX
Member
I have a few custom potions I have installed. 1 I made, 2 I downloaded. My question is: Sometimes I see people say to add the new potion to basepotion.cs in this bracket.
Before I go and add any new potions to this enum I was just wondering what the point of having a custom potion added to it is? They still work fine?
Code:
public enum PotionEffect
{
Nightsight,
CureLesser,
Cure,
CureGreater,
Agility,
AgilityGreater,
Strength,
StrengthGreater,
PoisonLesser,
Poison,
PoisonGreater,
PoisonDeadly,
Refresh,
RefreshTotal,
HealLesser,
Heal,
HealGreater,
ExplosionLesser,
Explosion,
ExplosionGreater
}
Before I go and add any new potions to this enum I was just wondering what the point of having a custom potion added to it is? They still work fine?