Skip to content

Commit

Permalink
updoot
Browse files Browse the repository at this point in the history
  • Loading branch information
Halonexus committed May 7, 2024
1 parent 944d3fa commit f244ef2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ModularTegustation/tegu_items/rcorp/objective.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/payload/payload.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f244ef2

Please sign in to comment.