Пример #1
0
 def isInQueue(self):
     """
     Checks if the current vehicle is in the event battle queue. Will replace the original
     entity's method for the event vehicle.
     
     :return: True if the vehicle is queued, otherwise False.
     """
     return isInEventBattlesQueue()
 def isInQueue(self):
     """
     Checks if the current vehicle is in the event battle queue. Will replace the original
     functional method for the event vehicle.
     
     :return: True if the vehicle is queued, otherwise False.
     """
     return isInEventBattlesQueue()
Пример #3
0
 def isInQueue(self):
     return isInEventBattlesQueue()
 def isInQueue(self):
     return isInEventBattlesQueue()
Пример #5
0
 def __isInEventBattles(self):
     if self.prbDispatcher:
         isInFallout = self.prbDispatcher.getFunctionalState().isInFallout()
     else:
         isInFallout = False
     return prb_getters.isInEventBattlesQueue() or isInFallout
Пример #6
0
 def __isInEventBattles(self):
     if self.prbDispatcher:
         isInFallout = self.prbDispatcher.getFunctionalState().isInFallout()
     else:
         isInFallout = False
     return prb_getters.isInEventBattlesQueue() or isInFallout