Skip to content

Commit

Permalink
фиксеки
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Sep 22, 2024
1 parent e4163e9 commit 2cf7f47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/datums/rituals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
return .

/datum/ritual/proc/del_things() // This is a neutral variant with item delete. Override it to change.
for(var/obj/item/thing as in used_things)
for(var/obj/item/thing in used_things)
qdel(thing)

return
Expand Down Expand Up @@ -347,7 +347,7 @@
return RITUAL_FAILED_ON_PROCEED

message_admins("[key_name(human)] accomplished mindtransfer ritual on [key_name(invoker)]")

return RITUAL_SUCCESSFUL

/datum/ritual/ashwalker/mind_transfer/disaster(obj/item/item, mob/living/carbon/human/invoker)
Expand All @@ -366,6 +366,7 @@
return

. = ..(bitflags)

return .

/datum/ritual/ashwalker/summon
Expand Down Expand Up @@ -439,6 +440,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

0 comments on commit 2cf7f47

Please sign in to comment.