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()