mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Fix duplicate proc arguments (#80709)
this is important for getting /tg/station to compile in opendream, because they raise an error on duplicate arguments
This commit is contained in:
@@ -130,7 +130,7 @@
|
||||
RegisterSignal(part.owner, COMSIG_LIVING_DEATH, PROC_REF(owner_died))
|
||||
RegisterSignal(part.owner, COMSIG_LIVING_ELECTROCUTE_ACT, PROC_REF(owner_shocked)) //detach if we are shocked, not beneficial for the host but hey its a sideeffect
|
||||
|
||||
/mob/living/basic/living_limb_flesh/proc/owner_shocked(datum/source, shock_damage, source, siemens_coeff, flags)
|
||||
/mob/living/basic/living_limb_flesh/proc/owner_shocked(datum/source, shock_damage, shock_source, siemens_coeff, flags)
|
||||
SIGNAL_HANDLER
|
||||
if(shock_damage < 10)
|
||||
return
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
return FALSE
|
||||
|
||||
/mob/living/silicon/setOxyLoss(amount, updating_health = TRUE, forced = FALSE, forced = FALSE, required_biotype)
|
||||
/mob/living/silicon/setOxyLoss(amount, updating_health = TRUE, forced = FALSE, required_biotype)
|
||||
if(isAI(src)) //ditto
|
||||
return ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user