From ebf9a7b5e89f5523c5e1c3d2692bf54dac322cae Mon Sep 17 00:00:00 2001 From: Vi3trice <80771500+Vi3trice@users.noreply.github.com> Date: Mon, 26 Sep 2022 10:32:23 -0400 Subject: [PATCH] Update point.dm (#19181) --- code/modules/point/point.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/point/point.dm b/code/modules/point/point.dm index 2e9803d5676..7c1c252f78d 100644 --- a/code/modules/point/point.dm +++ b/code/modules/point/point.dm @@ -98,9 +98,13 @@ set name = "Point To" set category = "Object" + if(next_move >= world.time) + return + if(istype(A, /obj/effect/temp_visual/point) || istype(A, /atom/movable/emissive_blocker)) return FALSE + changeNext_move(CLICK_CD_POINT) if(A.loc in src) // Object is inside a container on the mob. It's not part of the verb's list since it's not in view and requires middle clicking. point_at(A) return TRUE