This commit is contained in:
INeedBots
2020-11-21 22:16:11 -06:00
parent 4660007754
commit c1f49b7d9f
2 changed files with 434 additions and 0 deletions

View File

@ -349,6 +349,22 @@ isPlanting()
return (isDefined(self.isPlanting) && self.isPlanting);
}
/*
If the player is carrying a bomb
*/
isBombCarrier()
{
return (isDefined(self.isBombCarrier) && self.isBombCarrier);
}
/*
If the site is in use
*/
isInUse()
{
return (isDefined(self.inUse) && self.inUse);
}
/*
If the player is in laststand
*/