From 74f928d542c5696f7c167deae4c11d84ecd883a2 Mon Sep 17 00:00:00 2001 From: Foereaper Date: Fri, 16 Jul 2021 01:18:40 +0200 Subject: [PATCH] Fix tabs --- Example_StatPointUI/Server/StatPointUI.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Example_StatPointUI/Server/StatPointUI.lua b/Example_StatPointUI/Server/StatPointUI.lua index b8efde6..0758535 100644 --- a/Example_StatPointUI/Server/StatPointUI.lua +++ b/Example_StatPointUI/Server/StatPointUI.lua @@ -19,11 +19,11 @@ function StatPointUI.LoadData(guid) if(query) then StatPointUI.cache[guid] = { query:GetUInt32(0), -- Strength - query:GetUInt32(1), -- Agility - query:GetUInt32(2), -- Stamina - query:GetUInt32(3), -- Intellect - query:GetUInt32(4), -- Spirit - query:GetUInt32(5) -- statpoints + query:GetUInt32(1), -- Agility + query:GetUInt32(2), -- Stamina + query:GetUInt32(3), -- Intellect + query:GetUInt32(4), -- Spirit + query:GetUInt32(5) -- statpoints } else StatPointUI.cache[guid] = {0, 0, 0, 0, 0, 0};