mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-09 11:28:26 +00:00
Fix -misc cache not updating.
This commit is contained in:
parent
7c56de9ebb
commit
204fb45712
@ -333,6 +333,11 @@ public void Shavit_OnChatConfigLoaded()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Shavit_OnStyleChanged(int client, BhopStyle oldstyle, BhopStyle newstyle)
|
||||||
|
{
|
||||||
|
gBS_Style[client] = newstyle;
|
||||||
|
}
|
||||||
|
|
||||||
public void OnConVarChanged(ConVar convar, const char[] oldValue, const char[] newValue)
|
public void OnConVarChanged(ConVar convar, const char[] oldValue, const char[] newValue)
|
||||||
{
|
{
|
||||||
gI_GodMode = gCV_GodMode.IntValue;
|
gI_GodMode = gCV_GodMode.IntValue;
|
||||||
|
|||||||
@ -1192,7 +1192,12 @@ public int CreateZoneConfirm_Handler(Menu menu, MenuAction action, int param1, i
|
|||||||
|
|
||||||
else if(StrEqual(info, "tpzone"))
|
else if(StrEqual(info, "tpzone"))
|
||||||
{
|
{
|
||||||
GetClientAbsOrigin(param1, gV_Teleport[param1]);
|
float vTeleport[3];
|
||||||
|
GetClientAbsOrigin(param1, vTeleport);
|
||||||
|
|
||||||
|
// if()
|
||||||
|
gV_Teleport[param1] = vTeleport;
|
||||||
|
//GetClientAbsOrigin(param1, gV_Teleport[param1]);
|
||||||
Shavit_PrintToChat(param1, "%T", "ZoneTeleportUpdated", param1);
|
Shavit_PrintToChat(param1, "%T", "ZoneTeleportUpdated", param1);
|
||||||
|
|
||||||
CreateEditMenu(param1);
|
CreateEditMenu(param1);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user