From 4d9e016e9249039f3785e907e9e3edd4c8268bdd Mon Sep 17 00:00:00 2001 From: BotoX Date: Thu, 2 Mar 2017 21:26:09 +0100 Subject: [PATCH] FullUpdate & ThirdPerson minor changes. --- .../gamedata/{FullUpdate2.games.txt => FullUpdate.games.txt} | 0 FullUpdate/scripting/FullUpdate.sp | 4 ++-- ThirdPerson/scripting/ThirdPerson.sp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename FullUpdate/gamedata/{FullUpdate2.games.txt => FullUpdate.games.txt} (100%) diff --git a/FullUpdate/gamedata/FullUpdate2.games.txt b/FullUpdate/gamedata/FullUpdate.games.txt similarity index 100% rename from FullUpdate/gamedata/FullUpdate2.games.txt rename to FullUpdate/gamedata/FullUpdate.games.txt diff --git a/FullUpdate/scripting/FullUpdate.sp b/FullUpdate/scripting/FullUpdate.sp index 0536f53..cc078fe 100644 --- a/FullUpdate/scripting/FullUpdate.sp +++ b/FullUpdate/scripting/FullUpdate.sp @@ -18,10 +18,10 @@ public Plugin myinfo = public void OnPluginStart() { - Handle hGameConf = LoadGameConfigFile("FullUpdate2.games"); + Handle hGameConf = LoadGameConfigFile("FullUpdate.games"); if(hGameConf == INVALID_HANDLE) { - SetFailState("Couldn't load FullUpdate2.games game config!"); + SetFailState("Couldn't load FullUpdate.games game config!"); return; } diff --git a/ThirdPerson/scripting/ThirdPerson.sp b/ThirdPerson/scripting/ThirdPerson.sp index 4ca5a9b..580b278 100644 --- a/ThirdPerson/scripting/ThirdPerson.sp +++ b/ThirdPerson/scripting/ThirdPerson.sp @@ -24,9 +24,9 @@ enum Obs_Mode public Plugin myinfo = { - name = "FullUpdate", + name = "ThirdPerson", author = "BotoX", - description = "Serverside cl_fullupdate", + description = "Shitty thirdperson.", version = "1.0" }