From e76e9ad34c55b491afc1cd83e5dd54bc3c1ed86a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 28 Dec 2020 18:02:16 -0800 Subject: [PATCH] poi --- code/modules/vehicles/cars/clowncar.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/vehicles/cars/clowncar.dm b/code/modules/vehicles/cars/clowncar.dm index 698c3bf904..655ca21b93 100644 --- a/code/modules/vehicles/cars/clowncar.dm +++ b/code/modules/vehicles/cars/clowncar.dm @@ -144,10 +144,13 @@ . = ..() AddComponent(/datum/component/twitch_plays/simple_movement) START_PROCESSING(SSfastprocess, src) + GLOB.poi_list |= src + notify_ghosts("Twitch Plays: Clown Car") /obj/vehicle/sealed/car/clowncar/twitch_plays/Destroy() - . = ..() STOP_PROCESSING(SSfastprocess, src) + GLOB.poi_list -= src + return ..() /obj/vehicle/sealed/car/clowncar/twitch_plays/process() var/dir = SEND_SIGNAL(src, COMSIG_TWITCH_PLAYS_MOVEMENT_DATA, TRUE)