Updated TF2 condition idenifiers (bug 4801, r=fyren).

Added TFCond_InHealRadius (amputator glow) and fixed TFCond_Healing.
This commit is contained in:
Nicholas Hastings 2011-02-28 19:43:08 -05:00
parent f348e58508
commit d94634398e
2 changed files with 4 additions and 3 deletions

View File

@ -94,9 +94,9 @@ enum TFCond
TFCond_Charging,
TFCond_DemoBuff,
TFCond_CritCola,
TFCond_InHealRadius,
TFCond_Healing,
TFCond_OnFire = 22,
TFCond_OnFire,
TFCond_Overhealed,
TFCond_Jarated,
TFCond_Bleeding,

View File

@ -58,7 +58,8 @@
#define TF_CONDFLAG_CHARGING (1 << 17)
#define TF_CONDFLAG_DEMOBUFF (1 << 18)
#define TF_CONDFLAG_CRITCOLA (1 << 19)
#define TF_CONDFLAG_HEALING (1 << 20)
#define TF_CONDFLAG_INHEALRADIUS (1 << 20)
#define TF_CONDFLAG_HEALING (1 << 21)
#define TF_CONDFLAG_ONFIRE (1 << 22)
#define TF_CONDFLAG_OVERHEALED (1 << 23)
#define TF_CONDFLAG_JARATED (1 << 24)