mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-18 06:11:39 +00:00
Makes Explosion and Singulo Defer Based on CPU
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
//You're the same as me? I hate you I'm going home
|
||||
if(clusterCheckFlags & CLUSTER_CHECK_SAME_TURFS)
|
||||
clustering = rand(clusterMin,clusterMax)
|
||||
for(var/turf/F in trange(clustering,T))
|
||||
for(var/turf/F in spiral_range_turfs(clustering,T))
|
||||
if(istype(F,turfPath))
|
||||
skipLoopIteration = TRUE
|
||||
break
|
||||
@@ -53,7 +53,7 @@
|
||||
//You're DIFFERENT to me? I hate you I'm going home
|
||||
if(clusterCheckFlags & CLUSTER_CHECK_DIFFERENT_TURFS)
|
||||
clustering = rand(clusterMin,clusterMax)
|
||||
for(var/turf/F in trange(clustering,T))
|
||||
for(var/turf/F in spiral_range_turfs(clustering,T))
|
||||
if(!(istype(F,turfPath)))
|
||||
skipLoopIteration = TRUE
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user