Boolean to turn these little assholes off.

This commit is contained in:
Loudrob 2015-04-22 07:40:47 -04:00
parent 4b5c0e29be
commit 2c4cbbb025

View file

@ -319,6 +319,7 @@ class DistributedBattleBase(DistributedNode.DistributedNode, BattleBase):
pass pass
def getInteractiveProp(self): def getInteractiveProp(self):
if config.GetBool('want-anim-props', True):
if self.interactiveProp: if self.interactiveProp:
return self.interactiveProp return self.interactiveProp
elif base.cr.playGame.hood: elif base.cr.playGame.hood:
@ -329,6 +330,8 @@ class DistributedBattleBase(DistributedNode.DistributedNode, BattleBase):
return self.interactiveProp return self.interactiveProp
return None return None
else:
return None
def getInteractivePropTrackBonus(self): def getInteractivePropTrackBonus(self):
prop = self.getInteractiveProp() prop = self.getInteractiveProp()