Skip to content

Commit 55e0880

Browse files
committed
fixed bodies not being added to chathistory
1 parent ae55514 commit 55e0880

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

game/options.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ define gui.show_name = False
1212

1313

1414

15-
define config.version = "1.1.0-demo"
15+
define config.version = "1.1.1-demo"
1616

1717

1818

game/utils/data.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ init python:
9999
raw_bodies = [b for b in self.characters[name]["left"]] + [b for b in self.characters[name]["right"]]
100100
bodies = []
101101
for part in raw_bodies:
102-
if part not in raw_bodies:
102+
if part not in bodies:
103103
bodies.append(part)
104104

105105
string = " and ".join(bodies)

0 commit comments

Comments
 (0)