Skip to content

Commit

Permalink
unnecessary args remove pt1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rerik007 committed Apr 20, 2024
1 parent 0d0c4bf commit b15cfdb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@
playsound(user, 'sound/misc/demon_consume.ogg', 50, TRUE)
RegisterSignal(user, COMSIG_MOB_DEATH, PROC_REF(user_death))

user.drop_item_ground(src, force = TRUE, silent = TRUE, ignore_pixel_shift = TRUE)
user.drop_item_ground(src, force = TRUE, silent = TRUE)
insert(user)

/obj/item/organ/internal/cyberimp/arm/katana/emp_act() //Organic, no emp stuff
Expand All @@ -363,8 +363,7 @@
if(!katana.drew_blood)
to_chat(owner, span_userdanger("[katana] lashes out at you in hunger!"))
playsound(owner, 'sound/misc/demon_attack1.ogg', 50, TRUE)
if(parent_organ_zone)
owner.apply_damage(25, BRUTE, parent_organ_zone, TRUE)
owner.apply_damage(25, BRUTE, parent_organ_zone, TRUE)
katana.drew_blood = FALSE
katana.clean_blood()
return ..()
Expand Down

0 comments on commit b15cfdb

Please sign in to comment.