Update To 516.1673 (#21676)

This PR updates the repo fully to Byond 516.1673. We now have access to
Associative Lists, Vectors, Matrices, and a huge number of math
improvements tha will allow us to catapult the repo into a new era of
simulationism.

I have tested this PR to verify that it works.
<img width="1076" height="1079" alt="image"
src="https://github.com/user-attachments/assets/c69a7276-7611-4a59-8630-46d8dd8a12a6"
/>
This commit is contained in:
VMSolidus
2025-12-23 23:13:42 +00:00
committed by GitHub
parent ad2a83db85
commit e0f4b3b7fc
15 changed files with 34 additions and 28 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
next_turf:
for(var/turf/T in world)
for(var/dir in GLOB.cardinals)
var/list/connect_types = list(1 = 0, 2 = 0, 3 = 0)
var/alist/connect_types = alist(1 = 0, 2 = 0, 3 = 0)
for(var/obj/machinery/atmospherics/pipe in T)
if(dir & pipe.initialize_directions)
for(var/connect_type in pipe.connect_types)