Cleans up some extra args in Destroy() (#80642)

## About The Pull Request

After https://github.com/tgstation/tgstation/pull/80628, these shouldn't
be needed anymore right?

## Why It's Good For The Game

Cleans up some vestigial code

## Changelog
EDIT: Not player-facing.
This commit is contained in:
Bloop
2023-12-29 21:54:07 -05:00
committed by GitHub
parent c2ddf15ef5
commit f34174414d
60 changed files with 63 additions and 63 deletions

View File

@@ -38,7 +38,7 @@ GLOBAL_DATUM(highlander_controller, /datum/highlander_controller)
robot.make_scottish()
addtimer(CALLBACK(SSshuttle.emergency, TYPE_PROC_REF(/obj/docking_port/mobile/emergency, request), null, 1), 50)
/datum/highlander_controller/Destroy(force, ...)
/datum/highlander_controller/Destroy(force)
. = ..()
UnregisterSignal(SSdcs, COMSIG_GLOB_CREWMEMBER_JOINED)

View File

@@ -29,7 +29,7 @@
ui.set_autoupdate(FALSE)
ui.open()
/datum/lua_editor/Destroy(force, ...)
/datum/lua_editor/Destroy(force)
. = ..()
if(current_state)
LAZYREMOVEASSOC(SSlua.editors, text_ref(current_state), src)

View File

@@ -27,7 +27,7 @@
proxy_view.color = current_color
proxy_view.display_to(owner.mob)
/datum/color_matrix_editor/Destroy(force, ...)
/datum/color_matrix_editor/Destroy(force)
QDEL_NULL(proxy_view)
return ..()

View File

@@ -15,7 +15,7 @@
src.target = target
testing_matrix = matrix(target.transform)
/datum/nobody_wants_to_learn_matrix_math/Destroy(force, ...)
/datum/nobody_wants_to_learn_matrix_math/Destroy(force)
QDEL_NULL(testing_matrix)
return ..()