diff --git a/plugins/include/tf2.inc b/plugins/include/tf2.inc index b3cfcd82..7be525c5 100644 --- a/plugins/include/tf2.inc +++ b/plugins/include/tf2.inc @@ -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, diff --git a/plugins/include/tf2_stocks.inc b/plugins/include/tf2_stocks.inc index a9ada0f5..6b5a36d5 100644 --- a/plugins/include/tf2_stocks.inc +++ b/plugins/include/tf2_stocks.inc @@ -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)