mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-30 13:00:54 +00:00
Use the constant, not a magic number
This commit is contained in:
parent
e3de8ae75f
commit
71c1a5b7e2
1 changed files with 1 additions and 1 deletions
|
@ -991,7 +991,7 @@ static void P_LoadThings(void)
|
|||
|| mt->type == 1702) // MT_AXISTRANSFERLINE
|
||||
continue; // These were already spawned
|
||||
|
||||
if (mt->type == 2000) // MT_RANDOMITEM
|
||||
if (mt->type == MT_RANDOMITEM) // MT_RANDOMITEM
|
||||
nummapboxes++;
|
||||
|
||||
mt->mobj = NULL;
|
||||
|
|
Loading…
Reference in a new issue