From 56d42cfbcd8d7cd89bc6ad656a9b17485138125e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 18 Aug 2024 19:42:46 +0200 Subject: [PATCH] [MIRROR] lights placed on walls with the RLD now face the correct direction. (#29414) * lights placed on walls with the RLD now face the correct direction. (#85875) ## About The Pull Request They ought to face away from the wall, not toward it. ## Why It's Good For The Game This will fix #85681. ## Changelog :cl: fix: lights placed on walls with the RLD now face the correct direction. /:cl: * lights placed on walls with the RLD now face the correct direction. --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/game/objects/items/rcd/RLD.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/rcd/RLD.dm b/code/game/objects/items/rcd/RLD.dm index 2a99f535f42..6156cd0ee73 100644 --- a/code/game/objects/items/rcd/RLD.dm +++ b/code/game/objects/items/rcd/RLD.dm @@ -166,7 +166,7 @@ return ITEM_INTERACT_BLOCKING activate() var/obj/machinery/light/L = new /obj/machinery/light(get_turf(winner)) - L.setDir(get_dir(winner, interacting_with)) + L.setDir(get_dir(interacting_with, winner)) L.color = color_choice L.set_light_color(color_choice) return ITEM_INTERACT_SUCCESS