Changes over all instances of new/list() to something more sensible (#25569)

Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
DGamerL
2024-06-06 20:23:33 +00:00
committed by GitHub
parent 25d0e71004
commit 3db0b5d98d
30 changed files with 57 additions and 57 deletions
+1 -1
View File
@@ -265,7 +265,7 @@
var/list/viewscales = getviewsize(view)
var/countx = CEILING((viewscales[1] / 2) * parallax_scaler, 1) + 1
var/county = CEILING((viewscales[2] / 2) * parallax_scaler, 1) + 1
var/list/new_overlays = new
var/list/new_overlays = list()
for(var/x in -countx to countx)
for(var/y in -county to county)
if(x == 0 && y == 0)