Use compatible var statements

This commit is contained in:
Tad Hardesty
2020-01-18 22:59:32 -08:00
parent 7bd3208cc6
commit d8a64c83dc
8 changed files with 30 additions and 40 deletions

View File

@@ -144,9 +144,8 @@ Class Procs:
merge(A.zone,B.zone)
return
var
a_to_b = get_dir(A,B)
b_to_a = get_dir(B,A)
var/a_to_b = get_dir(A,B)
var/b_to_a = get_dir(B,A)
if(!A.connections) A.connections = new
if(!B.connections) B.connections = new