mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-06 16:31:26 +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
|
|| mt->type == 1702) // MT_AXISTRANSFERLINE
|
||||||
continue; // These were already spawned
|
continue; // These were already spawned
|
||||||
|
|
||||||
if (mt->type == 2000) // MT_RANDOMITEM
|
if (mt->type == MT_RANDOMITEM) // MT_RANDOMITEM
|
||||||
nummapboxes++;
|
nummapboxes++;
|
||||||
|
|
||||||
mt->mobj = NULL;
|
mt->mobj = NULL;
|
||||||
|
|
Loading…
Reference in a new issue