Explorar o código

Always make sure player echo is on when menu exits.

Steve Thielemann %!s(int64=5) %!d(string=hai) anos
pai
achega
f187acf2ed
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      flexible.py

+ 3 - 0
flexible.py

@@ -2834,6 +2834,7 @@ class ProxyMenu(object):
 
         # If we want it, it's here.
         self.defer = None
+        self.game.to_player = True
 
         self.keepalive = task.LoopingCall(self.awake)
         self.keepalive.start(30)
@@ -2841,6 +2842,8 @@ class ProxyMenu(object):
 
     def __del__(self):
         log.debug("ProxyMenu {0} RIP".format(self))
+        # When we exit, always make sure player echo is on.
+        self.game.to_player = True
 
     def whenDone(self):
         self.defer = defer.Deferred()