mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-10 03:48:25 +00:00
Add a line I accidentally removed (#186)
This commit is contained in:
parent
903d93a5b1
commit
a2e4814041
@ -45,7 +45,7 @@ char gS_RadioCommands[][] = {"coverme", "takepoint", "holdpos", "regroup", "foll
|
|||||||
// cache
|
// cache
|
||||||
bool gB_Hide[MAXPLAYERS+1];
|
bool gB_Hide[MAXPLAYERS+1];
|
||||||
bool gB_Late = false;
|
bool gB_Late = false;
|
||||||
int gF_LastFlags[MAXPLAYERS+1];
|
int gI_LastFlags[MAXPLAYERS+1];
|
||||||
|
|
||||||
// cvars
|
// cvars
|
||||||
ConVar gCV_GodMode = null;
|
ConVar gCV_GodMode = null;
|
||||||
@ -470,12 +470,12 @@ public Action OnPlayerRunCmd(int client, int &buttons)
|
|||||||
// prespeed
|
// prespeed
|
||||||
if((gI_StyleProperties[Shavit_GetBhopStyle(client)] & STYLE_PRESPEED) == 0 && bInStart)
|
if((gI_StyleProperties[Shavit_GetBhopStyle(client)] & STYLE_PRESPEED) == 0 && bInStart)
|
||||||
{
|
{
|
||||||
if((gI_PreSpeed == 2 || gI_PreSpeed == 3) && (gF_LastFlags[client] & FL_ONGROUND) > 0 && (GetEntityFlags(client) & FL_ONGROUND) > 0 && (buttons & IN_JUMP) > 0)
|
if((gI_PreSpeed == 2 || gI_PreSpeed == 3) && (gI_LastFlags[client] & FL_ONGROUND) > 0 && (GetEntityFlags(client) & FL_ONGROUND) > 0 && (buttons & IN_JUMP) > 0)
|
||||||
{
|
{
|
||||||
TeleportEntity(client, NULL_VECTOR, NULL_VECTOR, view_as<float>({0.0, 0.0, 0.0}));
|
TeleportEntity(client, NULL_VECTOR, NULL_VECTOR, view_as<float>({0.0, 0.0, 0.0}));
|
||||||
Shavit_PrintToChat(client, "Bhopping in the start zone is not allowed.");
|
Shavit_PrintToChat(client, "Bhopping in the start zone is not allowed.");
|
||||||
|
|
||||||
gF_LastFlags[client] = GetEntityFlags(client);
|
gI_LastFlags[client] = GetEntityFlags(client);
|
||||||
|
|
||||||
return Plugin_Continue;
|
return Plugin_Continue;
|
||||||
}
|
}
|
||||||
@ -502,6 +502,8 @@ public Action OnPlayerRunCmd(int client, int &buttons)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gI_LastFlags[client] = GetEntityFlags(client);
|
||||||
|
|
||||||
return Plugin_Continue;
|
return Plugin_Continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user