Skip to content

Commit d2524f9

Browse files
author
LocalIdentity
committed
Fix potential unencumbered bug
1 parent ee3fc76 commit d2524f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modules/CalcPerform.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3050,7 +3050,7 @@ function calcs.perform(env, skipEHP)
30503050
if modDB:Flag(nil, "DisableWeapons") then
30513051
env.player.weaponData1 = copyTable(env.data.unarmedWeaponData[env.classId])
30523052
modDB.conditions["Unarmed"] = true
3053-
if not env.player.Gloves or env.player.Gloves == None then
3053+
if not env.player.Gloves or env.player.Gloves == "None" then
30543054
modDB.conditions["Unencumbered"] = true
30553055
end
30563056
elseif env.weaponModList1 then

0 commit comments

Comments
 (0)