EMERGENCY ZAS FIX

This commit is contained in:
SkyMarshal
2012-08-14 11:34:59 -07:00
parent 9f35ebee0b
commit fe4d8dda78
3 changed files with 5 additions and 5 deletions

View File

@@ -248,12 +248,12 @@ zone/proc/process()
//Air Movement//
////////////////
var/list/sharing_lookup_table = list(6, 11, 15, 18, 20, 21)
var/list/sharing_lookup_table = list(0.06, 0.11, 0.15, 0.18, 0.20, 0.21)
proc/ShareRatio(datum/gas_mixture/A, datum/gas_mixture/B, connecting_tiles)
//Shares a specific ratio of gas between mixtures using simple weighted averages.
var
ratio = 21
ratio = 0.21
size = max(1,A.group_multiplier)
share_size = max(1,B.group_multiplier)
@@ -336,7 +336,7 @@ proc/ShareSpace(datum/gas_mixture/A, list/unsimulated_tiles)
unsim_temperature += T.temperature/unsimulated_tiles.len
var
ratio = 21
ratio = 0.21
old_pressure = A.return_pressure()