mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
Two as anything greps (and some other cleanup) (#92974)
This commit is contained in:
@@ -13,13 +13,13 @@
|
||||
|
||||
// Generates a list of render target -> PM for future use
|
||||
var/list/render_target_to_plane = list()
|
||||
for(var/plane_key as anything in our_group.plane_masters)
|
||||
for(var/plane_key in our_group.plane_masters)
|
||||
var/atom/movable/screen/plane_master/plane = our_group.plane_masters[plane_key]
|
||||
if(plane.render_target)
|
||||
render_target_to_plane[plane.render_target] = plane
|
||||
|
||||
|
||||
for(var/plane_key as anything in our_group.plane_masters)
|
||||
for(var/plane_key in our_group.plane_masters)
|
||||
var/atom/movable/screen/plane_master/plane = our_group.plane_masters[plane_key]
|
||||
|
||||
if(!plane.multiz_scaled)
|
||||
@@ -41,4 +41,3 @@
|
||||
if(target.multiz_scaled)
|
||||
TEST_FAIL("[plane.type] draws a render relay into [target.type]. Both are scaled by multiz, so this will cause strange transforms.\n\
|
||||
consider making a new render plate that they can both draw to instead, or something of that nature.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user