From e5d95ba55e24faee6ee9d2fd340a2653997414eb Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Wed, 29 Apr 2015 18:40:06 -0700 Subject: [PATCH] Adjust LINDA airflow push speed This commit adds a small, 2 cycle delay between LINDA pushing a certain object. This is due to differences between ours and -tg-'s processing speed, which was causing strange teleportation. --- code/LINDA/LINDA_turf_tile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/LINDA/LINDA_turf_tile.dm b/code/LINDA/LINDA_turf_tile.dm index 1e73075f7aa..e90fd803661 100644 --- a/code/LINDA/LINDA_turf_tile.dm +++ b/code/LINDA/LINDA_turf_tile.dm @@ -272,7 +272,7 @@ atom/movable/var/pressure_resistance = 5 atom/movable/var/last_forced_movement = 0 atom/movable/proc/experience_pressure_difference(pressure_difference, direction) - if(last_forced_movement >= air_master.current_cycle) + if(last_forced_movement >= air_master.current_cycle+2) return 0 else if(!anchored) if(pressure_difference > pressure_resistance)