|
@@ -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 = []
|