Skip to content

Commit

Permalink
Remove LateLoad to avoid crashed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexer10 committed Jan 29, 2018
1 parent 707de65 commit 4f8cd88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Binary file removed addons/sourcemod/plugins/hexprops.smx
Binary file not shown.
8 changes: 0 additions & 8 deletions addons/sourcemod/scripting/hexprops.sp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ int iEntHP[MAX_ENTITIES];

//Boolean
bool bMoveProp[MAXPLAYERS+1];
bool bLate;

//String
char sPropPath[PLATFORM_MAX_PATH];
Expand All @@ -43,7 +42,6 @@ public Plugin myinfo =
//Startup
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
{
bLate = late;

RegPluginLibrary("hexprops");
CreateNative("IsEntProp", Native_IsEntProp);
Expand All @@ -57,12 +55,6 @@ public void OnPluginStart()

RegAdminCmd("sm_props", Cmd_Props, ADMFLAG_GENERIC);
HookEvent("round_poststart", Event_RoundPostStart);

if (bLate) //Support lateload
{
PreparePropKv();
LoadProps();
}
}

public void OnMapStart()
Expand Down

0 comments on commit 4f8cd88

Please sign in to comment.