Skip to content

Commit 0949a48

Browse files
author
LocalIdentity
committed
Fix potential unencumbered bug
1 parent 61c8094 commit 0949a48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/CalcPerform.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2764,7 +2764,7 @@ function calcs.perform(env, skipEHP)
27642764
if modDB:Flag(nil, "DisableWeapons") then
27652765
env.player.weaponData1 = copyTable(env.data.unarmedWeaponData[env.classId])
27662766
modDB.conditions["Unarmed"] = true
2767-
if not env.player.Gloves or env.player.Gloves == None then
2767+
if not env.player.Gloves or env.player.Gloves == "None" then
27682768
modDB.conditions["Unencumbered"] = true
27692769
end
27702770
elseif env.weaponModList1 then

0 commit comments

Comments
 (0)