summaryrefslogtreecommitdiff
path: root/game/party.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-26 15:51:03 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-26 15:51:03 -0300
commitc4c487b780cf718b39dc710aed427ec1e99bd74d (patch)
treea3f2483b86bd95fd63f1431ee9fc2d86fbb4a65d /game/party.rpy
parentaf49463d61ecaf314170fab707a5206ff902425d (diff)
downloadclient-c4c487b780cf718b39dc710aed427ec1e99bd74d.tar.gz
client-c4c487b780cf718b39dc710aed427ec1e99bd74d.tar.bz2
client-c4c487b780cf718b39dc710aed427ec1e99bd74d.tar.xz
client-c4c487b780cf718b39dc710aed427ec1e99bd74d.zip
Some optimizations to be more Python3 compliant (for when Renpy 8 comes out)
Also, fix an edge scenario crash at tavern and a missed logging at battle story log
Diffstat (limited to 'game/party.rpy')
-rw-r--r--game/party.rpy4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/party.rpy b/game/party.rpy
index 7fe8c47..4d7cdcc 100644
--- a/game/party.rpy
+++ b/game/party.rpy
@@ -70,7 +70,7 @@ init python:
Party.append(une["inv_id"])
if debug:
- print str(Party)
+ print(str(Party))
# Add unit, but only if no duplicates are found
# Exception: If it is -1, then we can add
@@ -85,7 +85,7 @@ init python:
Party[pix]=newindex
if debug:
- print str(Party)
+ print(str(Party))
# Set party
set_party(pid, Party)