Remove bot check from linedef executor functions
This commit is contained in:
parent
07f6e6ae58
commit
ce5d30d64a
1 changed files with 1 additions and 4 deletions
|
|
@ -4881,7 +4881,7 @@ static void P_ProcessEggCapsule(player_t *player, sector_t *sector)
|
|||
mobj_t *mo2;
|
||||
INT32 i;
|
||||
|
||||
if (player->bot || sector->ceilingdata || sector->floordata)
|
||||
if (sector->ceilingdata || sector->floordata)
|
||||
return;
|
||||
|
||||
// Find the center of the Eggtrap and release all the pretty animals!
|
||||
|
|
@ -5092,9 +5092,6 @@ static void P_EvaluateDamageType(player_t *player, sector_t *sector, boolean isT
|
|||
|
||||
static void P_EvaluateLinedefExecutorTrigger(player_t *player, sector_t *sector, boolean isTouching)
|
||||
{
|
||||
if (player->bot)
|
||||
return;
|
||||
|
||||
if (!sector->triggertag)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue