From 861e33cef1f6aa2cd92cd19d899345a4cc6718f3 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 19 Jan 2023 06:12:28 +0100 Subject: [PATCH] [MIRROR] Unwacks immovable rod in hyperspace [MDB IGNORE] (#18612) * Unwacks immovable rod in hyperspace (#72506) closes #72497 Immovable rods, including wizard, will ignore the hyperspace drift :cl: fix: fixes wizard rod form infinitely travelling in hyperspace /:cl: * Unwacks immovable rod in hyperspace Co-authored-by: Time-Green Co-authored-by: Funce --- code/modules/events/immovable_rod.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/events/immovable_rod.dm b/code/modules/events/immovable_rod.dm index 21cdc82316f..46500a6bc1b 100644 --- a/code/modules/events/immovable_rod.dm +++ b/code/modules/events/immovable_rod.dm @@ -85,6 +85,8 @@ In my current plan for it, 'solid' will be defined as anything with density == 1 special_target = specific_target loopy_rod ||= force_looping + ADD_TRAIT(src, TRAIT_FREE_HYPERSPACE_MOVEMENT, INNATE_TRAIT) + SSpoints_of_interest.make_point_of_interest(src) RegisterSignal(src, COMSIG_ATOM_ENTERING, PROC_REF(on_entering_atom))