diff options
author | archshift <admin@archshift.com> | 2014-06-08 12:27:22 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-06-17 20:39:20 +0200 |
commit | 73cea7065db458da7704917788ac80b75e042d6e (patch) | |
tree | 9f3aff26a5eccaec2ecf1391b90a89f730a9d7f9 /src/Entities/EntityEffects.h | |
parent | Added splash potion functionality (diff) | |
download | cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar.gz cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar.bz2 cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar.lz cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar.xz cuberite-73cea7065db458da7704917788ac80b75e042d6e.tar.zst cuberite-73cea7065db458da7704917788ac80b75e042d6e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/EntityEffects.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/Entities/EntityEffects.h b/src/Entities/EntityEffects.h index e6b5bdd5d..26d2c92e5 100644 --- a/src/Entities/EntityEffects.h +++ b/src/Entities/EntityEffects.h @@ -9,30 +9,30 @@ public: /** All types of entity effects (numbers correspond to IDs) */ enum eType { - efNoEffect = 0, - efSpeed = 1, - efSlowness = 2, - efHaste = 3, - efMiningFatigue = 4, - efStrength = 5, - efInstantHealth = 6, - efInstantDamage = 7, - efJumpBoost = 8, - efNausia = 9, - efRegeneration = 10, - efResistance = 11, - efFireResistance = 12, - efWaterBreathing = 13, - efInvisibility = 14, - efBlindness = 15, - efNightVision = 16, - efHunger = 17, - efWeakness = 18, - efPoison = 19, - efWither = 20, - efHealthBoost = 21, - efAbsorption = 22, - efSaturation = 23, + effNoEffect = 0, + effSpeed = 1, + effSlowness = 2, + effHaste = 3, + effMiningFatigue = 4, + effStrength = 5, + effInstantHealth = 6, + effInstantDamage = 7, + effJumpBoost = 8, + effNausea = 9, + effRegeneration = 10, + effResistance = 11, + effFireResistance = 12, + effWaterBreathing = 13, + effInvisibility = 14, + effBlindness = 15, + effNightVision = 16, + effHunger = 17, + effWeakness = 18, + effPoison = 19, + effWither = 20, + effHealthBoost = 21, + effAbsorption = 22, + effSaturation = 23, } ; /** The duration of the effect */ |