diff --git a/zombie_hunting_respawn/zh_respawn_stop.sp b/zombie_hunting_respawn/zh_respawn_stop.sp index 7b2c6cfb..f3d9ed97 100644 --- a/zombie_hunting_respawn/zh_respawn_stop.sp +++ b/zombie_hunting_respawn/zh_respawn_stop.sp @@ -83,6 +83,14 @@ public Action announce_zone_controlls(Handle hTimer) float zm_controlled_zone = 0.0; if (g_zoneCount == 0 || !g_permit_zone_benefits) { + g_human_damage_addition = 1.0; //indicating no damage buffs + for (int i = 0; i < MaxClients; i++) + { + if (IsValidClient(i) && IsPlayerAlive(i)) + { + SetEntityGravity(i, 1.0); + } + } return Plugin_Handled; } for (int i = 0; i < g_zoneCount; i++)