[NO GBP] Fixes cultists, blood brothers and headrevs sometimes not getting their roundstart items (#91333)

## About The Pull Request

Didn't notice that equip_in_one_of_slots qdeleted by default

Closes #91288

## Changelog
🆑
fix: Fixed cultists, blood brothers and headrevs sometimes not getting
their roundstart items
/🆑
This commit is contained in:
SmArtKar
2025-05-25 12:02:00 +03:00
committed by GitHub
parent b988ac1b49
commit 26faef509c
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -576,7 +576,7 @@
/// del_on_fail - delete the item upon failure
/mob/proc/equip_to_storage(obj/item/item, slot, indirect_action = FALSE, del_on_fail = FALSE, initial = FALSE)
var/obj/item/worn_item = get_item_by_slot(slot)
if (worn_item?.atom_storage?.attempt_insert(item, src, override = TRUE, force = indirect_action ? STORAGE_SOFT_LOCKED : STORAGE_NOT_LOCKED))
if (worn_item?.atom_storage?.attempt_insert(item, src, override = TRUE, force = indirect_action ? STORAGE_SOFT_LOCKED : STORAGE_NOT_LOCKED, messages = FALSE))
return TRUE
if (del_on_fail)