Ver Fonte

Merge branch 'master' of ssh://gitredgreen/RedGreen/twgs-proxy

Steve Thielemann há 5 anos atrás
pai
commit
4e70c5c505
1 ficheiros alterados com 2 adições e 6 exclusões
  1. 2 6
      flexible.py

+ 2 - 6
flexible.py

@@ -608,9 +608,7 @@ class ScriptPort(object):
 
     def send2player(self, txt):
         log.debug("ScriptPort.send2player({0})".format(txt))
-        self.queue_game.put(
-            self.nl + txt + self.r + self.nl
-        )
+        self.queue_game.put(txt)
 
     def game_prompt(self, prompt: str):
         log.debug("{0} : {1}".format(self.state, prompt))
@@ -1180,9 +1178,7 @@ class ScriptExplore(object):
 
     def send2player(self, txt):
         log.debug("ScriptExplore.send2player({0})".format(txt))
-        self.queue_game.put(
-            self.nl + txt + self.r + self.nl
-        )
+        self.queue_game.put(txt)
 
     def resetStuff(self):
         self.dense = []