- add: money is now sent with the character data sent to the client

This commit is contained in:
2025-03-09 13:53:26 -04:00
parent 8ba8fce20b
commit dfd98e96d2
7 changed files with 52 additions and 43 deletions

View File

@@ -79,9 +79,10 @@ message Character {
message CharacterFull {
string character_id = 1; // Unique ID for the character
string name = 2; // Name of the character
Location position = 3; // Character's position
Looks looks = 4; // Character's Looks
Stats stats = 5; // Character's stats
repeated Skill skills = 6; // Character's skills
repeated Item items = 7; // Character inventory
int64 money = 3;
Location position = 4; // Character's position
Looks looks = 5; // Character's Looks
Stats stats = 6; // Character's stats
repeated Skill skills = 7; // Character's skills
repeated Item items = 8; // Character inventory
}