diff --git a/README.md b/README.md index 12137a5..c0cd3b6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ Brick Walls === [![ContentDB](https://content.minetest.net/packages/philipmi/brickwalls/shields/title/)](https://content.minetest.net/packages/philipmi/brickwalls/) [![ContentDB](https://content.minetest.net/packages/philipmi/brickwalls/shields/downloads/)](https://content.minetest.net/packages/philipmi/brickwalls/stats/) -[![Forums](https://img.shields.io/badge/Forums-Brick_Walls-lightgrey)](https://forum.minetest.net/viewtopic.php?t=29221) -[![License](https://img.shields.io/badge/license-MIT-brightgreen)](#license) +[![Forums](https://shields.sp-codes.de/badge/Forums-Brick_Walls-lightgrey)](https://forum.minetest.net/viewtopic.php?t=29221) +[![License](https://shields.sp-codes.de/badge/license-MIT-brightgreen)](#license) ![Screenshot](screenshot.png) This simple mod adds brick walls for the walls mod. There are walls for many types of bricks from different mods. @@ -28,6 +28,8 @@ Walls are added for the following brick types: - From `xdecor`: - Cactus Brick - Moon Brick +- From `sumpf`: + - Swamp Stone Brick The number of blocks that walls connect to will also be expanded. For the walls to be added, it's required to enable the mods containing the corresponding materials (bricks). diff --git a/init.lua b/init.lua index 07dbcb3..fa41cf3 100644 --- a/init.lua +++ b/init.lua @@ -23,6 +23,8 @@ brickwalls = { -- xdecor {"brickwalls:cactusbrick", "Cactus Brick Wall", "xdecor:cactusbrick"}, {"brickwalls:moonbrick", "Moon Brick Wall", "xdecor:moonbrick"}, + -- sumpf + {"brickwalls:junglestonebrick", "Swamp Stone Brick Wall", "sumpf:junglestonebrick"}, } for _, i in pairs(brickwalls) do @@ -64,6 +66,8 @@ for n, def in pairs(minetest.registered_nodes) do "ethereal:icebrick", "ethereal:snowbrick", -- xdecor "xdecor:cactusbrick", "xdecor:moonbrick", + -- sumpf + "sumpf:junglestone", "sumpf:cobble", "sumpf:junglestonebrick", } }) end diff --git a/mod.conf b/mod.conf index 9598611..0a503c0 100644 --- a/mod.conf +++ b/mod.conf @@ -1,6 +1,6 @@ name = brickwalls author = philipmi depends = walls -optional_depends = default, nether, ethereal, xdecor +optional_depends = default, nether, ethereal, xdecor, sumpf description = Adds brick walls from different types of bricks. title = Brick Walls diff --git a/screenshot.png b/screenshot.png index ea642c9..4baf974 100644 Binary files a/screenshot.png and b/screenshot.png differ