Skip to content

Commit

Permalink
Fixed Concrete Brick and Reinforced Concrete Brick couldn't be placed…
Browse files Browse the repository at this point in the history
… next to water
  • Loading branch information
LovelySanta committed Mar 29, 2020
1 parent 81def9b commit c1771f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions angelssmelting/changelog.txt
Expand Up @@ -5,6 +5,8 @@ Date: ???
- Changed the name from Non Expendable mold to Reusable Mold
- Added basic recipe tints to the induction furnace + recipes
- Changed stack size of pavement items to use refinings setting (was 1000, now 200 by default)
Bugfixes:
- Fixed Concrete Brick and Reinforced Concrete Brick couldn't be placed next to water
---------------------------------------------------------------------------------------------------
Version: 0.6.3
Date: 24-03-2020
Expand Down
6 changes: 3 additions & 3 deletions angelssmelting/prototypes/items/angels-stone.lua
Expand Up @@ -41,7 +41,7 @@ data:extend(
place_as_tile =
{
result = "clay-bricks",
condition_size = 4,
condition_size = 2,
condition = { "water-tile" }
}
},
Expand Down Expand Up @@ -76,7 +76,7 @@ data:extend(
place_as_tile =
{
result = "concrete",
condition_size = 4,
condition_size = 1,
condition = { "water-tile" }
}
},
Expand All @@ -91,7 +91,7 @@ data:extend(
place_as_tile =
{
result = "concrete",
condition_size = 4,
condition_size = 1,
condition = { "water-tile" }
}
},
Expand Down

0 comments on commit c1771f3

Please sign in to comment.