Fix multiplayer parity and release regressions

This commit is contained in:
Alexander Sellite 2026-07-30 14:01:07 -04:00
parent b18d9392d8
commit c0ff78322d
17 changed files with 378 additions and 17 deletions

View file

@ -9,6 +9,7 @@ enum Status {
INVALID_BUYER,
INVALID_OFFER,
INVALID_SELECTION,
RESERVED,
TRANSACTION_FAILED,
}
@ -46,5 +47,7 @@ func get_message() -> String:
return "invalid buyer offer."
Status.INVALID_SELECTION:
return "the fish selection is invalid."
Status.RESERVED:
return "reserved fish cannot be sold."
_:
return "transaction failed."