Server: unreference player.h

This commit is contained in:
Marco Cawthorne 2022-04-25 13:34:41 -07:00
parent def78f91a3
commit a94f19a5fc
Signed by: eukara
GPG Key ID: C196CD8BA993248A
2 changed files with 2 additions and 3 deletions

View File

@ -17,4 +17,3 @@
#include "gamerules.h"
#include "../../../valve/src/server/items.h"
#include "../../../valve/src/server/flashlight.h"
#include "../../../valve/src/server/player.h"

View File

@ -26,9 +26,9 @@ Game_Input(player pl)
}
if (input_buttons & INPUT_BUTTON5)
Player_UseDown();
pl.InputUse_Down();
else
Player_UseUp();
pl.InputUse_Up();
if (self.impulse == 100)
Flashlight_Toggle();