mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-18 14:12:20 +00:00
EMERGENCY ZAS FIX
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@
|
|||||||
*.dmb
|
*.dmb
|
||||||
*.lk
|
*.lk
|
||||||
info.json
|
info.json
|
||||||
|
/config/admins.txt
|
||||||
|
|||||||
@@ -173,7 +173,6 @@
|
|||||||
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/BirdMan"
|
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/BirdMan"
|
||||||
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Rust"
|
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Rust"
|
||||||
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Supermatter"
|
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Supermatter"
|
||||||
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Supermatter/backup"
|
|
||||||
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Tajara"
|
#define FILE_DIR "code/WorkInProgress/Cael_Aislinn/Tajara"
|
||||||
#define FILE_DIR "code/WorkInProgress/Chinsky"
|
#define FILE_DIR "code/WorkInProgress/Chinsky"
|
||||||
#define FILE_DIR "code/WorkInProgress/mapload"
|
#define FILE_DIR "code/WorkInProgress/mapload"
|
||||||
|
|||||||
@@ -248,12 +248,12 @@ zone/proc/process()
|
|||||||
//Air Movement//
|
//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)
|
proc/ShareRatio(datum/gas_mixture/A, datum/gas_mixture/B, connecting_tiles)
|
||||||
//Shares a specific ratio of gas between mixtures using simple weighted averages.
|
//Shares a specific ratio of gas between mixtures using simple weighted averages.
|
||||||
var
|
var
|
||||||
ratio = 21
|
ratio = 0.21
|
||||||
|
|
||||||
size = max(1,A.group_multiplier)
|
size = max(1,A.group_multiplier)
|
||||||
share_size = max(1,B.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
|
unsim_temperature += T.temperature/unsimulated_tiles.len
|
||||||
|
|
||||||
var
|
var
|
||||||
ratio = 21
|
ratio = 0.21
|
||||||
|
|
||||||
old_pressure = A.return_pressure()
|
old_pressure = A.return_pressure()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user