From 2bd7b5706cd837eda6f4cdbf2e108640c330ba80 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 27 Jul 2023 00:15:32 +0200 Subject: [PATCH] [MIRROR] [NO GBP] Fixes active conveyor belts not moving movables spawned on top of them. [MDB IGNORE] (#22703) * [NO GBP] Fixes active conveyor belts not moving movables spawned on top of them. (#77104) There's one instance of the old signal I've missed from #76376, all because lists treat undefined keys like text strings. * [NO GBP] Fixes active conveyor belts not moving movables spawned on top of them. --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/modules/mining/machine_processing.dm | 2 +- code/modules/recycling/conveyor.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index 41fdf228939..4f28db93bc6 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -46,7 +46,7 @@ /** Base proc for all `/mineral` subtype machines to use. Place your item pickup behavior in this proc when you override it for your specific machine. - Called when the COMSIG_ATOM_ENTERED and COMSIG_ATOM_INITIALIZED_ON signals are sent. + Called when the COMSIG_ATOM_ENTERED and COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON signals are sent. Arguments: * source - the turf that is listening for the signals. diff --git a/code/modules/recycling/conveyor.dm b/code/modules/recycling/conveyor.dm index f648a37b3c9..c630a4b140a 100644 --- a/code/modules/recycling/conveyor.dm +++ b/code/modules/recycling/conveyor.dm @@ -90,7 +90,7 @@ GLOBAL_LIST_EMPTY(conveyors_by_id) var/static/list/loc_connections = list( COMSIG_ATOM_EXITED = PROC_REF(conveyable_exit), COMSIG_ATOM_ENTERED = PROC_REF(conveyable_enter), - COMSIG_ATOM_INITIALIZED_ON = PROC_REF(conveyable_enter) + COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON = PROC_REF(conveyable_enter) ) AddElement(/datum/element/connect_loc, loc_connections) update_move_direction()