mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Disable NiGHTS objectplace, which serves no purpose anymore without writethings
This commit is contained in:
parent
8615e86a0b
commit
a46619684f
3 changed files with 5 additions and 5 deletions
|
@ -1137,7 +1137,7 @@ void OP_ResetObjectplace(void)
|
|||
//
|
||||
// Main meat of objectplace: handling functions
|
||||
//
|
||||
void OP_NightsObjectplace(player_t *player)
|
||||
/*void OP_NightsObjectplace(player_t *player)
|
||||
{
|
||||
ticcmd_t *cmd = &player->cmd;
|
||||
mapthing_t *mt;
|
||||
|
@ -1290,7 +1290,7 @@ void OP_NightsObjectplace(player_t *player)
|
|||
else
|
||||
P_SpawnMapThing(mt);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
//
|
||||
// OP_ObjectplaceMovement
|
||||
|
|
|
@ -38,7 +38,7 @@ extern UINT32 op_displayflags;
|
|||
|
||||
boolean OP_FreezeObjectplace(void);
|
||||
void OP_ResetObjectplace(void);
|
||||
void OP_NightsObjectplace(player_t *player);
|
||||
//void OP_NightsObjectplace(player_t *player);
|
||||
void OP_ObjectplaceMovement(player_t *player);
|
||||
|
||||
//
|
||||
|
|
|
@ -7520,8 +7520,8 @@ static void P_NiGHTSMovement(player_t *player)
|
|||
}
|
||||
}
|
||||
|
||||
if (objectplacing)
|
||||
OP_NightsObjectplace(player);
|
||||
//if (objectplacing)
|
||||
// OP_NightsObjectplace(player);
|
||||
}
|
||||
|
||||
// May be used in future for CTF
|
||||
|
|
Loading…
Reference in a new issue