mirror of
https://github.com/mt-mods/unifieddyes.git
synced 2024-11-22 23:43:45 +01:00
add "***" to all other warning/info msgs
This commit is contained in:
parent
6ecb115465
commit
2e4c2e2667
14
init.lua
14
init.lua
@ -651,7 +651,7 @@ function unifieddyes.on_airbrush(itemstack, player, pointed_thing)
|
|||||||
if not def then return end
|
if not def then return end
|
||||||
|
|
||||||
if minetest.is_protected(pos, player_name) then
|
if minetest.is_protected(pos, player_name) then
|
||||||
minetest.chat_send_player(player_name, "Sorry, someone else owns that node.")
|
minetest.chat_send_player(player_name, "*** Sorry, someone else owns that node.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -664,7 +664,7 @@ function unifieddyes.on_airbrush(itemstack, player, pointed_thing)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if not def.palette then
|
if not def.palette then
|
||||||
minetest.chat_send_player(player_name, "That node can't be colored.")
|
minetest.chat_send_player(player_name, "*** That node can't be colored.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -688,12 +688,12 @@ function unifieddyes.on_airbrush(itemstack, player, pointed_thing)
|
|||||||
if not idx then
|
if not idx then
|
||||||
suff = " Besides, "..string.sub(painting_with, 5).." can't be applied to that node."
|
suff = " Besides, "..string.sub(painting_with, 5).." can't be applied to that node."
|
||||||
end
|
end
|
||||||
minetest.chat_send_player(player_name, "You're in survival mode, and you're out of "..string.sub(painting_with, 5).."."..suff)
|
minetest.chat_send_player(player_name, "*** You're in survival mode, and you're out of "..string.sub(painting_with, 5).."."..suff)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if not idx then
|
if not idx then
|
||||||
minetest.chat_send_player(player_name, string.sub(painting_with, 5).." can't be applied to that node.")
|
minetest.chat_send_player(player_name, "*** "..string.sub(painting_with, 5).." can't be applied to that node.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -995,10 +995,10 @@ minetest.register_tool("unifieddyes:airbrush", {
|
|||||||
local newcolor = unifieddyes.color_to_name(node.param2, def)
|
local newcolor = unifieddyes.color_to_name(node.param2, def)
|
||||||
|
|
||||||
if not newcolor then
|
if not newcolor then
|
||||||
minetest.chat_send_player(player_name, "That node is uncolored.")
|
minetest.chat_send_player(player_name, "*** That node is uncolored.")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
minetest.chat_send_player(player_name, "Switching to dye:"..newcolor.." to match that node.")
|
minetest.chat_send_player(player_name, "*** Switching to dye:"..newcolor.." to match that node.")
|
||||||
unifieddyes.player_current_dye[player_name] = "dye:"..newcolor
|
unifieddyes.player_current_dye[player_name] = "dye:"..newcolor
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1025,7 +1025,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|||||||
local dye = unifieddyes.player_selected_dye[player_name]
|
local dye = unifieddyes.player_selected_dye[player_name]
|
||||||
unifieddyes.player_current_dye[player_name] = dye
|
unifieddyes.player_current_dye[player_name] = dye
|
||||||
unifieddyes.player_selected_dye[player_name] = nil
|
unifieddyes.player_selected_dye[player_name] = nil
|
||||||
minetest.chat_send_player(player_name, "Selected "..string.sub(dye, 5).." for the airbrush.")
|
minetest.chat_send_player(player_name, "*** Selected "..string.sub(dye, 5).." for the airbrush.")
|
||||||
return
|
return
|
||||||
else
|
else
|
||||||
local inv = player:get_inventory()
|
local inv = player:get_inventory()
|
||||||
|
Loading…
Reference in New Issue
Block a user