Added TF2 megaheal cond defines to tf2 incs (bug 4916, r=psychonic).

This commit is contained in:
FlaminSarge 2011-05-12 11:33:50 -04:00
parent df977577e2
commit 024d094459
2 changed files with 4 additions and 2 deletions

View File

@ -102,6 +102,7 @@ enum TFCond
TFCond_Bleeding,
TFCond_DefenseBuffed,
TFCond_Milked,
TFCond_MegaHeal,
TFCond_RegenBuffed,
TFCond_MarkedForDeath
};

View File

@ -66,8 +66,9 @@
#define TF_CONDFLAG_BLEEDING (1 << 25)
#define TF_CONDFLAG_DEFENSEBUFFED (1 << 26)
#define TF_CONDFLAG_MILKED (1 << 27)
#define TF_CONDFLAG_REGENBUFFED (1 << 28)
#define TF_CONDFLAG_MARKEDFORDEATH (1 << 29)
#define TF_CONDFLAG_MEGAHEAL (1 << 28)
#define TF_CONDFLAG_REGENBUFFED (1 << 29)
#define TF_CONDFLAG_MARKEDFORDEATH (1 << 30)
#define TF_DEATHFLAG_KILLERDOMINATION (1 << 0)
#define TF_DEATHFLAG_ASSISTERDOMINATION (1 << 1)