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.
This commit is contained in:
Tigercat2000
2015-04-29 18:40:06 -07:00
parent 627c600b81
commit e5d95ba55e
+1 -1
View File
@@ -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)