From 3c9a2414dfd43cdbc9e47440a9a73bc9b6d31b58 Mon Sep 17 00:00:00 2001 From: Michael McKoy Date: Wed, 26 Sep 2007 02:48:22 +0000 Subject: [PATCH] ExtendTimelimit works off seconds, so we should too. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401488 --- plugins/mapchooser.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mapchooser.sp b/plugins/mapchooser.sp index 8a1b8ee5..20510b9e 100644 --- a/plugins/mapchooser.sp +++ b/plugins/mapchooser.sp @@ -421,7 +421,7 @@ public Handler_MapVoteMenu(Handle:menu, MenuAction:action, param1, param2) { if (time > 0 && time < GetConVarInt(g_Cvar_ExtendTimeMax)) { - ExtendMapTimeLimit(GetConVarInt(g_Cvar_ExtendTimeStep)); + ExtendMapTimeLimit(GetConVarInt(g_Cvar_ExtendTimeStep)*60); } }