Remove unused seethrough arg (#90406)

unused

Co-authored-by: TiviPlus <572233640+TiviPlus@users.noreply.com>
This commit is contained in:
TiviPlus
2025-04-29 17:11:54 -06:00
committed by Shadow-Quill
co-authored by TiviPlus
parent 3f9f206da8
commit 80afefb339
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
///This component's personal uid
var/personal_uid
/datum/component/seethrough_mob/Initialize(target_alpha = 100, animation_time = 0.5 SECONDS, clickthrough = TRUE, keep_color = FALSE)
/datum/component/seethrough_mob/Initialize(target_alpha = 100, animation_time = 0.5 SECONDS, clickthrough = TRUE)
. = ..()
if(!ismob(parent))
@@ -75,7 +75,7 @@
AddElement(/datum/element/content_barfer)
AddElement(/datum/element/wall_tearer, tear_time = 4 SECONDS, reinforced_multiplier = 3, do_after_key = DOAFTER_SOURCE_SPACE_DRAGON_INTERACTION)
AddElement(/datum/element/door_pryer, pry_time = 4 SECONDS, interaction_key = DOAFTER_SOURCE_SPACE_DRAGON_INTERACTION)
AddComponent(/datum/component/seethrough_mob, keep_color = TRUE)
AddComponent(/datum/component/seethrough_mob)
AddComponent(/datum/component/profound_fisher, new /obj/item/fishing_rod/mob_fisher/dragon(src))
RegisterSignal(src, COMSIG_HOSTILE_PRE_ATTACKINGTARGET, PROC_REF(pre_attack))
RegisterSignal(src, COMSIG_MOB_STATCHANGE, PROC_REF(on_stat_changed))