summaryrefslogtreecommitdiffstats
path: root/source/Pawn.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-28 20:40:26 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-28 20:40:26 +0200
commita0f7dea3be8bc6cb693177da000667cb914c64e9 (patch)
tree22c842124f703cb24fd4efca706f53108d33ff63 /source/Pawn.h
parentPickup: Fixed a possible crash when a pickup went up above the world. (diff)
downloadcuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar.gz
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar.bz2
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar.lz
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar.xz
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.tar.zst
cuberite-a0f7dea3be8bc6cb693177da000667cb914c64e9.zip
Diffstat (limited to '')
-rw-r--r--source/Pawn.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Pawn.h b/source/Pawn.h
index dddb98699..e0dca8b72 100644
--- a/source/Pawn.h
+++ b/source/Pawn.h
@@ -32,6 +32,7 @@ enum eDamageType
dtFireContact, // Standing inside a fire block
dtInVoid, // Falling into the Void (Y < 0)
dtPotionOfHarming,
+ dtAdmin, // Damage applied by an admin command
// Some common synonyms:
dtPawnAttack = dtAttack,
@@ -50,6 +51,7 @@ enum eDamageType
dtPoison = dtPoisoning,
dtBurning = dtOnFire,
dtInFire = dtFireContact,
+ dtPlugin = dtAdmin,
} ;