From 7afea34ac40b840389aa20c1f6fc152d70b8c916 Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 30 Sep 2009 01:05:41 +0200 Subject: [PATCH] Fixed (again) existing volumes not removed after a map change. Moved VolInit call into OnMapStart event. Modules that must be reset per map should be initialized/reset here. --- src/zombiereloaded.sp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/zombiereloaded.sp b/src/zombiereloaded.sp index adf6def..6aae23f 100644 --- a/src/zombiereloaded.sp +++ b/src/zombiereloaded.sp @@ -140,7 +140,6 @@ public OnPluginStart() CommandsInit(); WeaponsInit(); EventInit(); - VolInit(); } /** @@ -163,7 +162,7 @@ public OnMapStart() InfectOnMapStart(); SEffectsOnMapStart(); ZSpawnOnMapStart(); - + VolInit(); } /**