Skip to content

Commit

Permalink
Fix Snow Queen Sword being Stuck in Belts and Doorstuck (#2755)
Browse files Browse the repository at this point in the history
Fix Snow Queen Sword being Stuck in Belts

Fixes snow queen sword being stuck in belt slots.
The issue came from it being a cursed weapon and retaining its storage slots. So i set the storage slots to null.
Preemptively adds this fix to hammer of light to avoid any bugs since it is also a cursed weapon.
Also fixed another bug where if your standing in the snow queen door while it closed you would be trapped forever.
  • Loading branch information
InsightfulParasite authored Mar 10, 2025
1 parent 7fe6dac commit ef5285c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/machinery/doors/airlock_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@
/*
LC13 Airlocks
*/

//One day ill replace this with a structure similar to the necropolis gate. -IP
/obj/machinery/door/airlock/snowqueen
name = "Snow Queen's Gate"
desc = "Are you ready for what lies ahead?"
Expand All @@ -583,7 +583,7 @@
assemblytype = null
glass = TRUE
bound_width = 128
bound_height = 128
aiControlDisabled = AI_WIRE_DISABLED
hackProof = TRUE
autoclose = TRUE
resistance_flags = INDESTRUCTIBLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,7 @@
hit_message = "parries the attack!"
block_cooldown_message = "You rearm your blade."
//For deleting it whenever seperated from user.
slot_flags = null
item_flags = DROPDEL

/obj/item/ego_weapon/shield/ice_sword/Initialize()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@
attack_verb_continuous = list("slams", "strikes", "smashes")
attack_verb_simple = list("slam", "strike", "smash")
hitsound = 'sound/abnormalities/lighthammer/hammer_filter.ogg'
slot_flags = null
var/list/spawned_mobs = list()
var/spawned_mob_max = 4
var/spawn_cooldown = 0
Expand Down

0 comments on commit ef5285c

Please sign in to comment.