Skip to content

Commit

Permalink
Ninja fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qrrk committed Mar 23, 2022
1 parent 5b18dd1 commit c8b66ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scenes/Catapult.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,11 @@ margin_bottom = 100.0
[node name="Tabs" type="TabContainer" parent="Main" groups=["disable_during_backup_operations", "disable_during_mod_operations", "disable_during_soundpack_operations", "disable_while_fetching_releases", "disable_while_installing_game"]]
margin_top = 104.0
margin_right = 592.0
margin_bottom = 487.0
margin_bottom = 373.0
tab_align = 0
script = ExtResource( 16 )

[node name="Game" type="VBoxContainer" parent="Main/Tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 7.5
Expand Down Expand Up @@ -955,6 +954,7 @@ margin_right = 577.0
margin_bottom = 56.0

[node name="Settings" type="VBoxContainer" parent="Main/Tabs"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 7.5
Expand Down Expand Up @@ -1222,7 +1222,7 @@ size_flags_horizontal = 4
text = "Print screen info"

[node name="Log" type="RichTextLabel" parent="Main"]
margin_top = 491.0
margin_top = 377.0
margin_right = 592.0
margin_bottom = 692.0
focus_mode = 2
Expand Down
2 changes: 1 addition & 1 deletion scripts/Catapult.gd
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ func _start_game(world := "") -> void:
var world_str := ""
if world != "":
world_str = "--world \"%s\"" % world
var command = "cd /d %s && start cataclysm-tiles.exe --userdir %s %s" % [Paths.game_dir, Paths.userdata, world_str]
var command = "cd /d %s && start cataclysm-tiles.exe --userdir \"%s/\" %s" % [Paths.game_dir, Paths.userdata, world_str]
OS.execute("cmd", ["/C", command], false)


Expand Down

0 comments on commit c8b66ed

Please sign in to comment.