From 87771e7ecc5f6891ae25fa4bcb5e1d6b256de45b Mon Sep 17 00:00:00 2001 From: Rhials <28870487+Rhials@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:51:21 -0500 Subject: [PATCH] Makes the encrypted bitrunning cache indestructible (#81150) ## About The Pull Request This gives the encrypted bitrunning crate a bunch of resistances, making it (theoretically) impossible to destroy. ## Why It's Good For The Game The crate getting shot down by mobs or players and softlocking a domain really kinda sucks! ## Changelog :cl: Rhials fix: The encrypted bitrunner cache is now impervious to most conventional means of destruction. /:cl: --- code/modules/bitrunning/objects/loot_crate.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/bitrunning/objects/loot_crate.dm b/code/modules/bitrunning/objects/loot_crate.dm index 539f977c778..a0a74ecb4b9 100644 --- a/code/modules/bitrunning/objects/loot_crate.dm +++ b/code/modules/bitrunning/objects/loot_crate.dm @@ -20,6 +20,7 @@ desc = "Needs to be decrypted at the safehouse to be opened." locked = TRUE damage_deflection = 30 + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF /obj/structure/closet/crate/secure/bitrunning/encrypted/can_unlock(mob/living/user, obj/item/card/id/player_id, obj/item/card/id/registered_id) return FALSE