Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c3b06d07 authored by PEDERSEN Ny Aina's avatar PEDERSEN Ny Aina
Browse files

utils: Fix non stripped wop entry

parent 533861c2
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ def generate_dict(file):
else:
# splitting by space and appending
[key, value] = info.split(" ", 1)
wowm_dict[wowm_index][key] = value
wowm_dict[wowm_index][key] = value.strip()
comments = strip_comments(file)
metadata = {
......
......@@ -43,7 +43,7 @@
"hi, stay still. you are half way to the end!",
":-)"
],
"message_conditions": " player_x == 5 and player_y == 3",
"message_conditions": "player_x == 5 and player_y == 3",
"triggered": false,
"visibility_conditions": "player_x == 5 and player_y == 3",
"visible": false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment