Browse Source

*** empty log message ***

Jesse Schell 24 years ago
parent
commit
cc92f692b8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      direct/src/fsm/FSM.py

+ 2 - 2
direct/src/fsm/FSM.py

@@ -57,8 +57,8 @@ class FSM(DirectObject):
             str = ("FSM " + self.getName() + ' not in any state')
         return str
 
-    def enterInitialState(self):
-        self.__enter(self.__initialState)
+    def enterInitialState(self, argList=[]):
+        self.__enter(self.__initialState, argList)
         return None
         
     # Jesse decided that simpler was better with the __str__ function