Add payphone data to client class

This commit is contained in:
Vortrex
2023-02-25 04:41:11 -06:00
parent 3fdc038242
commit 0762e4ac52

View File

@@ -149,6 +149,12 @@ class ClientData {
this.casinoChips = 0; // This might become an item with a useId of a business (for chips belonging to specific casinos)
this.casinoCardHand = [];
this.casinoPlayingGame = V_CASINO_GAME_NONE;
// PayPhone
this.usingPayPhone = -1;
this.payPhoneOtherPlayer = null;
this.payPhoneCallStart = 0;
this.payPhoneInitiatedCall = false;
}
};