From e668bbbade9f5d1bccba19298e201b0e2c9dda59 Mon Sep 17 00:00:00 2001 From: Acruid Date: Thu, 19 Sep 2019 11:46:03 -0700 Subject: [PATCH] The default space tile is now considered a subfloor. This flag is only used for draw culling, so it should have no unintended side effects. Previously it was not a sub floor, so things like wires would be hidden when placed in open space. --- Resources/Prototypes/Tiles/space.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Tiles/space.yml b/Resources/Prototypes/Tiles/space.yml index 28da91051c..97a94447fe 100644 --- a/Resources/Prototypes/Tiles/space.yml +++ b/Resources/Prototypes/Tiles/space.yml @@ -2,4 +2,5 @@ name: space display_name: Space texture: "" - friction: 0 \ No newline at end of file + friction: 0 + is_subfloor: true \ No newline at end of file