diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-12 10:46:39 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-12 10:46:39 +0000 |
commit | a4b3916f86dc96d78195d372d9025c8c3b822c1d (patch) | |
tree | 5ef5749b2fb997288bcad26dfc0387c7f95a5196 | |
parent | 0d311c06a207c8ad44ae5090a1a3f01f7959fbc5 (diff) |
stop dirt sides being tiled vertically (thanks HybridDog)
-rw-r--r-- | dirt.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,8 @@ for n = 1, #dirts do tiles = { "ethereal_grass_"..name.."_top.png", "default_dirt.png", - "default_dirt.png^ethereal_grass_"..name.."_side.png" + {name = "default_dirt.png^ethereal_grass_"..name.."_side.png", + tileable_vertical = false} }, is_ground_content = ethereal.cavedirt, groups = {crumbly = 3, soil = 1, ethereal_grass = 1}, |