From f244ef2ce48c2fcdc9e78e9e409288eef2f5b726 Mon Sep 17 00:00:00 2001 From: Halonexus Date: Tue, 7 May 2024 03:38:55 +0300 Subject: [PATCH] updoot --- ModularTegustation/tegu_items/rcorp/objective.dm | 4 ++-- code/modules/mob/payload/payload.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ModularTegustation/tegu_items/rcorp/objective.dm b/ModularTegustation/tegu_items/rcorp/objective.dm index a4469cdec6de..69dd9f3a9b05 100644 --- a/ModularTegustation/tegu_items/rcorp/objective.dm +++ b/ModularTegustation/tegu_items/rcorp/objective.dm @@ -36,7 +36,7 @@ GLOBAL_VAR_INIT(rcorp_abno_objective_location, null) new /mob/payload(get_turf(src), "abno") if("payload_rcorp") new /obj/effect/payload_destination(get_turf(src)) - ..() + return ..() /obj/effect/landmark/objectivespawn/proc/reinforce() minor_announce("R-Corp reinforcements are on the way. Hang on tight, commander." , "R-Corp Intelligence Office") @@ -66,7 +66,7 @@ GLOBAL_VAR_INIT(rcorp_abno_objective_location, null) new /mob/payload(get_turf(src), "rcorp") if("payload_abno") new /obj/effect/payload_destination(get_turf(src)) - . = ..() + return ..() /obj/effect/payload_destination name = "payload destination" diff --git a/code/modules/mob/payload/payload.dm b/code/modules/mob/payload/payload.dm index bd1997911e88..04dde9aa0db7 100644 --- a/code/modules/mob/payload/payload.dm +++ b/code/modules/mob/payload/payload.dm @@ -157,5 +157,5 @@ /mob/payload/forceMove() return -/mob/payload/throw_at() - return +/mob/payload/throw_at(atom/target, range, speed, mob/thrower, spin, diagonals_first, datum/callback/callback, force, gentle, quickstart) + return FALSE