We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae55514 commit 55e0880Copy full SHA for 55e0880
game/options.rpy
@@ -12,7 +12,7 @@ define gui.show_name = False
12
13
14
15
-define config.version = "1.1.0-demo"
+define config.version = "1.1.1-demo"
16
17
18
game/utils/data.rpy
@@ -99,7 +99,7 @@ init python:
99
raw_bodies = [b for b in self.characters[name]["left"]] + [b for b in self.characters[name]["right"]]
100
bodies = []
101
for part in raw_bodies:
102
- if part not in raw_bodies:
+ if part not in bodies:
103
bodies.append(part)
104
105
string = " and ".join(bodies)
0 commit comments