Fixes destroyed solar panels dropping overlays (#83224)

## About The Pull Request
Fixes #82301
It feels like im missing something here so if this isnt the right way to
fix this (deleting the overlays on the solar panels Destroy() ) please
tell me.

## Why It's Good For The Game
Bugfix

## Changelog

🆑 Seven
fix: Destroyed solar panels no longer drop their overlays
/🆑
This commit is contained in:
Lufferly
2024-05-15 02:22:38 +02:00
committed by GitHub
parent 16be085f7b
commit ca92ca4704
+2
View File
@@ -42,6 +42,8 @@
/obj/machinery/power/solar/Destroy()
unset_control() //remove from control computer
QDEL_NULL(panel)
QDEL_NULL(panel_edge)
return ..()
/obj/machinery/power/solar/on_changed_z_level(turf/old_turf, turf/new_turf, same_z_layer, notify_contents)