From 3120e474a7114b4975c018dc029567467d85cddd Mon Sep 17 00:00:00 2001 From: Sean Lewis Date: Thu, 5 Jun 2014 23:38:32 -0700 Subject: [PATCH] Patch increment. --- csgo/addons/sourcemod/scripting/multi1v1.sp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/csgo/addons/sourcemod/scripting/multi1v1.sp b/csgo/addons/sourcemod/scripting/multi1v1.sp index 072558d2..e4c94b5d 100644 --- a/csgo/addons/sourcemod/scripting/multi1v1.sp +++ b/csgo/addons/sourcemod/scripting/multi1v1.sp @@ -1,4 +1,4 @@ -#define PLUGIN_VERSION "0.3.0" +#define PLUGIN_VERSION "0.3.2" #define UPDATE_URL "https://dl.dropboxusercontent.com/u/76035852/multi1v1/csgo-multi-1v1.txt" #pragma semicolon 1 @@ -137,7 +137,7 @@ public OnPluginStart() { g_hDefaultRating = CreateConVar("sm_multi1v1_default_rating", "1500.0", "ELO rating a player starts with", _, true, MIN_RATING + 100.0, true, 10000.0); g_hMinRoundsForDB = CreateConVar("sm_multi1v1_minrounds", "10", "Minimum number of wins+losses to not be purged from the database on plugin startup (set to 0 to disable purging)", _, false, 0.0, true, 100.0); g_hAutoUpdate = CreateConVar("sm_multi1v1_autoupdate", "1", "Should the plugin attempt to use the auto-update plugin?"); - g_hVersion = CreateConVar("sm_multi1v1_version", PLUGIN_VERSION, "Current multi1v1 version", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY|FCVAR_DONTRECORD); + g_hVersion = CreateConVar("sm_multi1v1_version", PLUGIN_VERSION, "Current multi1v1 version", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY); SetConVarString(g_hVersion, PLUGIN_VERSION); /** Config file **/ @@ -510,13 +510,6 @@ public Event_OnPlayerSpawn(Handle:event, const String:name[], bool:dontBroadcast GivePlayerItem(client, "weapon_knife"); - if (g_LetTimeExpire[client] && g_TotalRounds >= 3) { - PrintToChat(client, "Stop letting time run out."); - // PrintToChat(client, " \x01\x0B\x04You let time run out last round. You will be punished and get \x031HP \x04this round."); - // SetEntityHealth(client, 1); - g_LetTimeExpire[client] = false; - } - CreateTimer(0.0, RemoveRadar, client); }