From 96fddaad435ebf5cf1f4e15a16d0d75b1f2c1525 Mon Sep 17 00:00:00 2001 From: Gandalf Date: Tue, 6 Jul 2021 23:57:04 +0100 Subject: [PATCH] aaa (#6768) --- modular_skyrat/master_files/code/modules/events/spacevine.dm | 2 +- modular_skyrat/modules/mapping/code/modules/genpop/turnstile.dm | 2 +- modular_skyrat/modules/materials_glass/glass.dm | 2 +- .../singularity_engine/code/particle_accelerator/particle.dm | 2 +- modular_skyrat/modules/tableflip/code/flipped_table.dm | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modular_skyrat/master_files/code/modules/events/spacevine.dm b/modular_skyrat/master_files/code/modules/events/spacevine.dm index f74b7245789..93ace6d5340 100644 --- a/modular_skyrat/master_files/code/modules/events/spacevine.dm +++ b/modular_skyrat/master_files/code/modules/events/spacevine.dm @@ -509,7 +509,7 @@ var/static/list/loc_connections = list( COMSIG_ATOM_ENTERED = .proc/on_entered, ) - AddElement(/datum/element/connect_loc, src, loc_connections) + AddElement(/datum/element/connect_loc, loc_connections) AddElement(/datum/element/atmos_sensitive, mapload) /obj/structure/spacevine/examine(mob/user) diff --git a/modular_skyrat/modules/mapping/code/modules/genpop/turnstile.dm b/modular_skyrat/modules/mapping/code/modules/genpop/turnstile.dm index d81eae6a013..ed9a7dd55fd 100644 --- a/modular_skyrat/modules/mapping/code/modules/genpop/turnstile.dm +++ b/modular_skyrat/modules/mapping/code/modules/genpop/turnstile.dm @@ -19,7 +19,7 @@ COMSIG_ATOM_EXIT = .proc/on_exit, ) - AddElement(/datum/element/connect_loc, src, loc_connections) + AddElement(/datum/element/connect_loc, loc_connections) /obj/machinery/turnstile/CanAtmosPass(turf/T) return TRUE diff --git a/modular_skyrat/modules/materials_glass/glass.dm b/modular_skyrat/modules/materials_glass/glass.dm index 78e55d21b89..cb6cc62f801 100644 --- a/modular_skyrat/modules/materials_glass/glass.dm +++ b/modular_skyrat/modules/materials_glass/glass.dm @@ -280,7 +280,7 @@ GLOBAL_LIST_INIT(glass_recipes, list ( \ var/static/list/loc_connections = list( COMSIG_ATOM_ENTERED = .proc/on_entered, ) - AddElement(/datum/element/connect_loc, src, loc_connections) + AddElement(/datum/element/connect_loc, loc_connections) /obj/item/shard/Destroy() . = ..() diff --git a/modular_skyrat/modules/singularity_engine/code/particle_accelerator/particle.dm b/modular_skyrat/modules/singularity_engine/code/particle_accelerator/particle.dm index ef7e461fbe1..286bf675a31 100644 --- a/modular_skyrat/modules/singularity_engine/code/particle_accelerator/particle.dm +++ b/modular_skyrat/modules/singularity_engine/code/particle_accelerator/particle.dm @@ -28,7 +28,7 @@ var/static/list/loc_connections = list( COMSIG_ATOM_ENTERED = .proc/on_entered, ) - AddElement(/datum/element/connect_loc, src, loc_connections) + AddElement(/datum/element/connect_loc, loc_connections) /obj/effect/accelerated_particle/Bump(atom/A) diff --git a/modular_skyrat/modules/tableflip/code/flipped_table.dm b/modular_skyrat/modules/tableflip/code/flipped_table.dm index e6e5becebae..94bbc087dfa 100644 --- a/modular_skyrat/modules/tableflip/code/flipped_table.dm +++ b/modular_skyrat/modules/tableflip/code/flipped_table.dm @@ -16,7 +16,7 @@ COMSIG_ATOM_EXIT = .proc/on_exit, ) - AddElement(/datum/element/connect_loc, src, loc_connections) + AddElement(/datum/element/connect_loc, loc_connections) /obj/structure/flippedtable/CanAllowThrough(atom/movable/mover, turf/target) . = ..()