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

@ -3,7 +3,7 @@ extends RefCounted
const WorldLayoutType = preload("res://world/world_layout.gd")
const PROTOCOL_VERSION: int = 10
const PROTOCOL_VERSION: int = 11
const GAME_BUILD: String = "prealpha"
const MAX_GAME_VERSION_LENGTH: int = 64
const MAX_DISPLAY_NAME_LENGTH: int = 24
@ -304,7 +304,7 @@ static func make_server_hello(
assigned_peer_id: int,
player_count: int,
max_players: int,
server_display_name: String = "NETfishing",
server_display_name: String = "straywild",
world_seed: int = DEFAULT_WORLD_SEED,
world_layout: StringName = WorldLayoutType.GENERATED,
) -> Dictionary:
@ -372,17 +372,17 @@ static func rejection_text(code: int) -> String:
return "You are not permitted to join this server."
RejectionCode.CLIENT_OUTDATED:
return (
"Your NETfishing version is out of date. "
"Your straywild version is out of date. "
+ "Update the game to join this server."
)
RejectionCode.SERVER_OUTDATED:
return (
"This server is out of date. "
+ "The host needs to update NETfishing."
+ "The host needs to update straywild."
)
RejectionCode.VERSION_MISMATCH:
return (
"This game and server use different NETfishing versions. "
"This game and server use different straywild versions. "
+ "Update both to the latest release."
)
_: