fix identation

This commit is contained in:
shavitush 2016-07-24 17:51:16 +03:00
parent 3c52b7e9e5
commit d3d6ccfb0d

View File

@ -81,23 +81,23 @@ public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max
public void OnAllPluginsLoaded() public void OnAllPluginsLoaded()
{ {
if(!LibraryExists("shavit-rankings")) if(!LibraryExists("shavit-rankings"))
{ {
SetFailState("shavit-rankings is required for the plugin to work."); SetFailState("shavit-rankings is required for the plugin to work.");
} }
// placed here and not in OnPluginStart() as `chat` is coming before `core` if sorted alphabetically // placed here and not in OnPluginStart() as `chat` is coming before `core` if sorted alphabetically
gSG_Type = Shavit_GetGameType(); gSG_Type = Shavit_GetGameType();
if(gSG_Type == Game_CSGO) if(gSG_Type == Game_CSGO)
{ {
gCV_Deadtalk = FindConVar("sv_deadtalk"); gCV_Deadtalk = FindConVar("sv_deadtalk");
} }
// modules // modules
gB_BaseComm = LibraryExists("basecomm"); gB_BaseComm = LibraryExists("basecomm");
gB_RTLer = LibraryExists("rtler"); gB_RTLer = LibraryExists("rtler");
gB_SCP = LibraryExists("scp"); gB_SCP = LibraryExists("scp");
} }
public void OnPluginStart() public void OnPluginStart()