replace abstract flag with skip_examine trait (#29276)

This commit is contained in:
Toastical
2025-05-14 01:26:27 +03:00
committed by GitHub
parent 5022be9da8
commit 2e0d3dbf29
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -325,7 +325,7 @@
var/list/result
var/obj/item/item = item_data.get_item(owner)
if(item && (item.flags & ABSTRACT || HAS_TRAIT(item, TRAIT_NO_STRIP) || HAS_TRAIT(item, TRAIT_SKIP_EXAMINE)))
if(item && (item.flags & ABSTRACT || HAS_TRAIT(item, TRAIT_NO_STRIP)))
items[strippable_key] = result
continue