From 0762e4ac5214412beef48375c279721bf1b9e479 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 25 Feb 2023 04:41:11 -0600 Subject: [PATCH] Add payphone data to client class --- scripts/server/client.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/server/client.js b/scripts/server/client.js index c810dcd2..2cb944e0 100644 --- a/scripts/server/client.js +++ b/scripts/server/client.js @@ -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; } };