Merge branch 'BuckarooBanzai-master-patch-93143' into 'master'

check proper `asc` range in digilines events too

See merge request VanessaE/led_marquee!7
master
Vanessa Dannenberg 2021-03-15 14:38:12 +00:00
commit 2bf2651cee
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ local on_digiline_receive_string = function(pos, node, channel, msg)
end
else
local asc = string.byte(msg)
if asc > 29 and asc < 256 then
if asc > 30 and asc < 256 then
minetest.swap_node(pos, { name = "led_marquee:char_"..asc, param2 = fdir + (last_color*8)})
meta:set_string("last_msg", tostring(msg))
meta:set_int("index", 1)