Fix multiplayer parity and release regressions
This commit is contained in:
parent
b18d9392d8
commit
c0ff78322d
17 changed files with 378 additions and 17 deletions
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue