forked from VoxeLibre/VoxeLibre
Mark unfinished items with “WIP” in tooltip
This commit is contained in:
parent
84b20db53e
commit
4300795837
|
@ -1,5 +1,5 @@
|
||||||
minetest.register_node("mcl_observers:observer", {
|
minetest.register_node("mcl_observers:observer", {
|
||||||
description = "Observer (WIP)",
|
description = "Observer",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
mcl_boats
|
||||||
|
mcl_anvils
|
||||||
|
mcl_core
|
||||||
|
mcl_end
|
||||||
|
mcl_flowers
|
||||||
|
mcl_fishing
|
||||||
|
mcl_maps
|
||||||
|
mcl_mobitems
|
||||||
|
mcl_minecarts
|
||||||
|
mcl_sponges
|
||||||
|
gemalde
|
||||||
|
signs
|
||||||
|
mesecons_observers
|
|
@ -0,0 +1 @@
|
||||||
|
Development mod for MineClone 2 which add a “WIP” comment to items which are considered to be very unfinished.
|
|
@ -0,0 +1,44 @@
|
||||||
|
local wip_items = {
|
||||||
|
"mcl_boats:boat_dark",
|
||||||
|
"mcl_boats:boat_spruce",
|
||||||
|
"mcl_boats:boat_acacia",
|
||||||
|
"mcl_boats:boat_jungle",
|
||||||
|
"mcl_boats:boat_birch",
|
||||||
|
"mcl_boats:boat",
|
||||||
|
"mcl_anvils:anvil",
|
||||||
|
"mcl_anvils:anvil_damage_1",
|
||||||
|
"mcl_anvils:anvil_damage_2",
|
||||||
|
"mcl_core:junglesapling",
|
||||||
|
"mcl_core:darksapling",
|
||||||
|
"mcl_core:birchsapling",
|
||||||
|
"mcl_core:sprucesapling",
|
||||||
|
"mcl_core:acaciasapling",
|
||||||
|
"mcl_core:apple_gold",
|
||||||
|
"mcl_end:ender_eye",
|
||||||
|
"mcl_end:chorus_fruit",
|
||||||
|
"mcl_end:chorus_flower",
|
||||||
|
"mcl_end:chorus_flower_dead",
|
||||||
|
"mcl_flowers:peony",
|
||||||
|
"mcl_fishing:fishing_rod",
|
||||||
|
"mcl_fishing:pufferfish_raw",
|
||||||
|
"mcl_maps:filled_map",
|
||||||
|
"mcl_maps:empty_map",
|
||||||
|
"mcl_mobitems:rotten_flesh",
|
||||||
|
"mcl_minecarts:golden_rail",
|
||||||
|
"mcl_sponges:sponge",
|
||||||
|
"mcl_farming:mushroom_red",
|
||||||
|
"mcl_farming:mushroom_brown",
|
||||||
|
"gemalde:node_1",
|
||||||
|
"mcl_observers:observer",
|
||||||
|
}
|
||||||
|
|
||||||
|
for i=1,#wip_items do
|
||||||
|
local def = minetest.registered_items[wip_items[i]]
|
||||||
|
if not def then
|
||||||
|
minetest.log("error", "[mcl_wip] Unknown item: "..wip_items[i])
|
||||||
|
break
|
||||||
|
end
|
||||||
|
local new_description = def.description
|
||||||
|
new_description = new_description .. "\n"..core.colorize("#FF0000", "(WIP)")
|
||||||
|
minetest.override_item(wip_items[i], { description = new_description })
|
||||||
|
end
|
|
@ -0,0 +1 @@
|
||||||
|
name = mcl_wip
|
Loading…
Reference in New Issue