1
0
mirror of https://github.com/mt-mods/signs_lib.git synced 2025-07-19 07:40:20 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
3c824aedf8 Merge branch 'updateonoff' into 'master'
On/off switch doesn't reset the text anymore

See merge request VanessaE/signs_lib!5
2021-01-18 15:18:55 +00:00
fe72e32396 update on off 2021-01-16 11:57:06 +01:00

View File

@ -1195,14 +1195,15 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
meta:set_int("widefont", 1) meta:set_int("widefont", 1)
change = true change = true
end end
if change then if change then
minetest.log("action", S("@1 flipped the wide-font switch to \"@2\" at @3", minetest.log("action", S("@1 flipped the wide-font switch to \"@2\" at @3",
(playername or ""), (playername or ""),
(fields.on and "off" or "on"), (fields.on and "off" or "on"),
minetest.pos_to_string(pos) minetest.pos_to_string(pos)
)) ))
minetest.show_formspec(playername, "signs_lib:sign", get_sign_formspec(pos, node.name))
signs_lib.update_sign(pos, fields) signs_lib.update_sign(pos, fields)
minetest.show_formspec(playername, "signs_lib:sign", get_sign_formspec(pos, node.name))
end end
end end
end) end)