From 78005a7d17bbc22a8ad0322b0d382226035bf693 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 17 Jun 2022 13:07:45 -0500 Subject: [PATCH] Add paintball data to client data class --- scripts/server/client.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/server/client.js b/scripts/server/client.js index ca40160f..271c89c2 100644 --- a/scripts/server/client.js +++ b/scripts/server/client.js @@ -129,6 +129,11 @@ class ClientData { this.alcoholLevel = 0; this.pedState = VRR_PEDSTATE_NONE; this.promptType = VRR_PROMPT_NONE; + + this.inPaintBall = false; + this.paintBallBusiness = -1; + this.paintBallDeaths = 0; + this.paintBallKills = 0; } };