diff options
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/p_inter.h | 2 | ||||
-rw-r--r-- | src/strife/p_user.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/strife/p_inter.h b/src/strife/p_inter.h index 066e8573..4de4360a 100644 --- a/src/strife/p_inter.h +++ b/src/strife/p_inter.h @@ -31,7 +31,7 @@ -boolean P_GivePower(player_t*, int); +boolean P_GivePower(player_t*, powertype_t); diff --git a/src/strife/p_user.c b/src/strife/p_user.c index 704985e6..4d52001c 100644 --- a/src/strife/p_user.c +++ b/src/strife/p_user.c @@ -46,6 +46,7 @@ #define LOOKDOWNMAX -110 // villsa [STRIFE] +boolean P_UseInventoryItem(player_t* player, int item); // fraggle [STRIFE] void P_DropInventoryItem(player_t* player, int sprite); // villsa [STRIFE] boolean P_ItemBehavior(player_t* player, int item); // villsa [STRIFE] static char useinventorymsg[44]; // villsa [STRIFE] @@ -858,4 +859,4 @@ boolean P_ItemBehavior(player_t* player, int item) } return true; -}
\ No newline at end of file +} |