Oops; PlayerQuit isn't a boolean!

This commit is contained in:
Prisima the Fox 2016-10-20 23:25:47 -04:00
parent 89e8766b77
commit fcf2fe79e0
1 changed files with 1 additions and 1 deletions

View File

@ -78,6 +78,6 @@ boolean LUAh_LinedefExecute(line_t *line, mobj_t *mo, sector_t *sector); // Hook
boolean LUAh_PlayerMsg(int source, int target, int flags, char *msg); // Hook for chat messages
boolean LUAh_HurtMsg(player_t *player, mobj_t *inflictor, mobj_t *source); // Hook for hurt messages
#define LUAh_PlayerSpawn(player) LUAh_PlayerHook(player, hook_PlayerSpawn) // Hook for G_SpawnPlayer
boolean LUAh_PlayerQuit(player_t *plr, int reason); // Hook for player quitting
void LUAh_PlayerQuit(player_t *plr, int reason); // Hook for player quitting
#endif