From 683fa5908da5c31b40e0bcca237cb1318e446700 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 25 Nov 2021 04:15:31 -0600 Subject: [PATCH] Load accent --- scripts/server/class.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/server/class.js b/scripts/server/class.js index 5d3a4723..b7c73eac 100644 --- a/scripts/server/class.js +++ b/scripts/server/class.js @@ -435,6 +435,7 @@ class SubAccountData { this.armour = 100; this.inHouse = 0; this.inBusiness = 0; + this.accent = ""; this.bodyParts = { hair: [0,0], @@ -483,6 +484,7 @@ class SubAccountData { this.armour = toInteger(dbAssoc["sacct_armour"]); this.inHouse = toInteger(dbAssoc["sacct_inhouse"]); this.inBusiness = toInteger(dbAssoc["sacct_inbusiness"]); + this.accent = toInteger(dbAssoc["sacct_accent"]); this.bodyParts = { hair: [toInteger(dbAssoc["sacct_svr_hd_part_hair_model"]) || 0, toInteger(dbAssoc["sacct_svr_hd_part_hair_texture"]) || 0],