mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix unused variables
This commit is contained in:
parent
21bd7bf041
commit
d43a5d0554
1 changed files with 25 additions and 23 deletions
|
|
@ -6033,14 +6033,15 @@ void K_DoSneaker(player_t *player, INT32 type)
|
|||
|
||||
static void K_DoShrink(player_t *user)
|
||||
{
|
||||
mobj_t *mobj, *next;
|
||||
|
||||
S_StartSound(NULL, sfx_kc46); // Sound the BANG!
|
||||
user->pflags |= PF_ATTACKDOWN;
|
||||
|
||||
Obj_CreateShrinkPohbees(user);
|
||||
|
||||
#if 0
|
||||
{
|
||||
mobj_t *mobj, *next;
|
||||
|
||||
// kill everything in the kitem list while we're at it:
|
||||
for (mobj = kitemcap; mobj; mobj = next)
|
||||
{
|
||||
|
|
@ -6070,6 +6071,7 @@ static void K_DoShrink(player_t *user)
|
|||
mobj->flags &= ~(MF_SOLID|MF_SHOOTABLE|MF_SPECIAL);
|
||||
mobj->flags |= MF_NOCLIPTHING; // Just for safety
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue