Lots of bug fixes that were reported by game testers and me.
This commit is contained in:
patrick_pluto 2024-08-06 11:13:52 +02:00
commit eba1c28eb9
9 changed files with 163 additions and 68 deletions

View file

@ -12,7 +12,6 @@ extends Node
var settings = {"save_version" = 2, "fps_counter" = 1}
var computers = 0
var players = 0
var is_creating = false
var map_name = "mansion"
func _ready():
@ -24,6 +23,8 @@ func _ready():
settings = temp
else:
Save.saveJSON("user://settings.json", settings)
if OS.is_debug_build():
settings["fps_counter"] = 1
func _process(delta):
pass