Skip to content

Commit dd8d51f

Browse files
authored
Fix broken quotes in init.mcfunction (#1076)
1 parent 880cf1b commit dd8d51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gm4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def module_updates(ctx: Context):
150150
init.lines.append('# Module update list')
151151
init.lines.append('kill @e[tag=gm4_update_message]')
152152
for m in updates:
153-
init.lines.append(f'execute if score {m["id"].removeprefix("gm4_")} gm4_modules matches ..{m["patch"] - 1} run summon minecraft:area_effect_cloud ~ ~ ~ {{CustomName:"\"{m["name"]}\"",Tags:["gm4_update_message"],Duration:2000}}')
153+
init.lines.append(f'execute if score {m["id"].removeprefix("gm4_")} gm4_modules matches ..{m["patch"] - 1} run summon minecraft:area_effect_cloud ~ ~ ~ {{CustomName:"\\"{m["name"]}\\"",Tags:["gm4_update_message"],Duration:2000}}')
154154

155155

156156
def populate_credits(ctx: Context):

0 commit comments

Comments
 (0)