diff --git a/ui/core/proto_utils/utils.ts b/ui/core/proto_utils/utils.ts index b7aa7c1bf5..892fc93504 100644 --- a/ui/core/proto_utils/utils.ts +++ b/ui/core/proto_utils/utils.ts @@ -1444,7 +1444,8 @@ export function canEquipItem(player: Player, it return false; } - if (item.requiresLevel > player.getLevel()){ + // end-game SoD items seem to be at-most 5 ilvl above the player level + if (item.requiresLevel > player.getLevel() || item.ilvl - 5 > player.getLevel()){ return false }