Skip to content

Commit

Permalink
fixes nr2
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Sep 22, 2024
1 parent 2cf7f47 commit 6d1acf6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions code/datums/rituals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
LAZYNULL(used_things)
LAZYNULL(required_things)
LAZYNULL(invokers)

return ..()

/datum/ritual/proc/pre_ritual_check(obj/item/item, mob/living/carbon/human/invoker)
Expand Down Expand Up @@ -440,7 +441,7 @@
playsound(ritual_object.loc, 'sound/magic/forcewall.ogg', 50, TRUE)
if(RITUAL_FAILED)
playsound(ritual_object.loc, 'sound/magic/invoke_general.ogg', 50, TRUE)

return .

/datum/ritual/ashwalker/curse
Expand Down Expand Up @@ -793,8 +794,8 @@
smoke.set_up(5, FALSE, get_turf(human.loc))
smoke.start()

for(var/obj/item/item as anything in human.get_equipped_items(TRUE, TRUE))
human.drop_item_ground(item)
for(var/obj/item/obj as anything in human.get_equipped_items(TRUE, TRUE))
human.drop_item_ground(obj)

return

Expand Down

0 comments on commit 6d1acf6

Please sign in to comment.