Ver código fonte

send2player and send2game update!

They now do not add anything extra to the message, direct output.
david 5 anos atrás
pai
commit
a6d2f857ff
1 arquivos 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 = []