diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-04 15:11:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-04 15:11:55 -0300 |
commit | 543f81b095b48a131dc1c2dd51a48d562feb3ad3 (patch) | |
tree | ce08dd4e5d070d9731b727c4f1c16a7b670fc600 /battle/common.py | |
parent | fdb91e8d3555cd4ebd8edb31d5b74a2c11f1cf41 (diff) | |
download | server-543f81b095b48a131dc1c2dd51a48d562feb3ad3.tar.gz server-543f81b095b48a131dc1c2dd51a48d562feb3ad3.tar.bz2 server-543f81b095b48a131dc1c2dd51a48d562feb3ad3.tar.xz server-543f81b095b48a131dc1c2dd51a48d562feb3ad3.zip |
Send action log and minor polishing
Diffstat (limited to 'battle/common.py')
-rw-r--r-- | battle/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/common.py b/battle/common.py index 21c97d2..649d852 100644 --- a/battle/common.py +++ b/battle/common.py @@ -104,9 +104,9 @@ def find_target(token, scope): continue except: try: - print("(%d) Faulty structure: %s" % (i, str(Battle[token][scope][i]))) + stdout("(%d) Faulty structure: %s" % (i, str(Battle[token][scope][i]))) except: - print("(%d) TOTALLY Faulty structure: %s" % (i, str(Battle[token][scope]))) + stdout("(%d) TOTALLY Faulty structure: %s" % (i, str(Battle[token][scope]))) continue continue targets.append(i) |