mirror of
https://github.com/minetest-mods/maptools.git
synced 2024-12-24 16:30:21 +01:00
Make inventory images use textures available in Minetest Game 5.0.0
This closes #9.
This commit is contained in:
parent
f0a3d58a99
commit
ccf94fb78b
@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
- Map Tools nodes/items can no longer be dropped to prevent them from falling
|
- Map Tools nodes/items can no longer be dropped to prevent them from falling
|
||||||
into bad hands.
|
into bad hands.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- The inventory images of `no_interact`, `no_build`, `ignore_like_no_clip`
|
||||||
|
and `ignore_like_no_point` now use textures that are available in
|
||||||
|
Minetest Game 5.0.0.
|
||||||
|
|
||||||
## [1.1.0] - 2019-03-23
|
## [1.1.0] - 2019-03-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -128,7 +128,7 @@ minetest.register_node("maptools:ignore_like_no_clip", {
|
|||||||
description = S("Ignore-like (no clip)"),
|
description = S("Ignore-like (no clip)"),
|
||||||
range = 12,
|
range = 12,
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
inventory_image = "default_steel_block.png^dye_purple.png",
|
inventory_image = "default_steel_block.png^dye_violet.png",
|
||||||
tiles = {"invisible.png"},
|
tiles = {"invisible.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
@ -143,7 +143,7 @@ minetest.register_node("maptools:ignore_like_no_point", {
|
|||||||
description = S("Ignore-like (no point)"),
|
description = S("Ignore-like (no point)"),
|
||||||
range = 12,
|
range = 12,
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
inventory_image = "default_steel_block.png^dye_purple.png",
|
inventory_image = "default_steel_block.png^dye_violet.png",
|
||||||
tiles = {"invisible.png"},
|
tiles = {"invisible.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
pointable = false,
|
pointable = false,
|
||||||
@ -283,7 +283,7 @@ minetest.register_node("maptools:nobuild", {
|
|||||||
description = S("Build Prevention"),
|
description = S("Build Prevention"),
|
||||||
range = 12,
|
range = 12,
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
inventory_image = "default_steel_block.png^bones_bones.png",
|
inventory_image = "default_steel_block.png^default_flint.png",
|
||||||
drawtype = "airlike",
|
drawtype = "airlike",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
@ -298,7 +298,7 @@ minetest.register_node("maptools:nointeract", {
|
|||||||
description = S("Interact Prevention"),
|
description = S("Interact Prevention"),
|
||||||
range = 12,
|
range = 12,
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
inventory_image = "default_steel_block.png^default_scorched_stuff.png",
|
inventory_image = "default_steel_block.png^default_bush_stem.png",
|
||||||
drawtype = "airlike",
|
drawtype = "airlike",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
Loading…
Reference in New Issue
Block a user