diff --git a/README.md b/README.md index 799371c..3c0016f 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Change log: - 2.3 - Localise many of the protector functions and tidy code. - 2.4 - Update to newer functions, Minetest 0.4.16 needed to run now. - 2.5 - Added HUD text to show when player is inside a protected area (updates every 5 seconds) -- 2.6 - Add protection against CSM tampering, updated Intllib support (thanks codexp) +- 2.6 - Add protection against CSM tampering, updated Intllib support (thanks codexp), tweaked block textures Lucky Blocks: 10 diff --git a/init.lua b/init.lua index 6a699b4..355c6f1 100644 --- a/init.lua +++ b/init.lua @@ -364,9 +364,9 @@ minetest.register_node("protector:protect", { description = S("Protection Block") .. " (" .. S("USE for area check") .. ")", drawtype = "nodebox", tiles = { - "moreblocks_circle_stone_bricks.png", - "moreblocks_circle_stone_bricks.png", - "moreblocks_circle_stone_bricks.png^protector_logo.png" + "default_stone.png^protector_overlay.png", + "default_stone.png^protector_overlay.png", + "default_stone.png^protector_overlay.png^protector_logo.png" }, sounds = default.node_sound_stone_defaults(), groups = {dig_immediate = 2, unbreakable = 1}, diff --git a/textures/johnsmith/moreblocks_circle_stone_bricks.png b/textures/johnsmith/moreblocks_circle_stone_bricks.png deleted file mode 100644 index 17aed51..0000000 Binary files a/textures/johnsmith/moreblocks_circle_stone_bricks.png and /dev/null differ diff --git a/textures/license.txt b/textures/license.txt index f4d77a0..8798df4 100644 --- a/textures/license.txt +++ b/textures/license.txt @@ -1,5 +1,3 @@ -following texture created by Hugo Locurcio (CC BY-SA 3.0): - moreblocks_circle_stone_bricks.png following Textures created by Fernando Zapata (CC BY-SA 3.0): doors_wood.png @@ -29,3 +27,4 @@ following textures by Cisoun (WTFPL): following textures by TenPlus1 (CC BY-SA 3.0): protector_logo.png protector_display.png + protector_overlay.png diff --git a/textures/moreblocks_circle_stone_bricks.png b/textures/moreblocks_circle_stone_bricks.png deleted file mode 100644 index 1782c00..0000000 Binary files a/textures/moreblocks_circle_stone_bricks.png and /dev/null differ diff --git a/textures/protector_overlay.png b/textures/protector_overlay.png new file mode 100644 index 0000000..00261da Binary files /dev/null and b/textures/protector_overlay.png differ