Rebrand project and refresh title presentation

This commit is contained in:
Alexander Sellite 2026-08-25 17:14:12 -04:00
parent 17fef2c5d4
commit 7ae20789a9
138 changed files with 1511 additions and 1498 deletions

View file

@ -15,7 +15,7 @@ func _initialize() -> void:
func _run() -> void:
var defaults := ConfigType.new()
defaults.set("data_directory", "/tmp/netfishing-server")
defaults.set("data_directory", "/tmp/straywild-server")
defaults.call("_validate")
assert(defaults.is_valid())
assert(not bool(defaults.get("public_listing")))
@ -37,7 +37,7 @@ func _run() -> void:
file.set_value("world", "seed", 928374)
file.set_value("server", "public", true)
file.set_value("server", "data_directory", "/tmp/configured-server")
file.set_value("discovery", "url", "https://discovery.netfishing.org/")
file.set_value("discovery", "url", "https://discovery.straywild.io/")
file.set_value("privacy", "chat_logging", true)
file.set_value(
"privacy",
@ -59,7 +59,7 @@ func _run() -> void:
assert(int(configured.get("max_players")) == 12)
assert(int(configured.get("world_seed")) == 928374)
assert(bool(configured.get("public_listing")))
assert(str(configured.get("discovery_url")) == "https://discovery.netfishing.org")
assert(str(configured.get("discovery_url")) == "https://discovery.straywild.io")
assert(bool(configured.get("chat_logging")))
assert(
str(configured.get("chat_log_path"))