mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- SW: Clean up a useless test function.
This commit is contained in:
parent
c43bde9b4d
commit
e3f6b5ff85
1 changed files with 1 additions and 4 deletions
|
@ -3826,10 +3826,7 @@ bool PlayerOnLadder(PLAYER* pp)
|
|||
|
||||
bool DoPlayerTestCrawl(PLAYER* pp)
|
||||
{
|
||||
if (abs(pp->loz - pp->hiz) < PLAYER_STANDING_ROOM)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
return abs(pp->loz - pp->hiz) < PLAYER_STANDING_ROOM;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue