Differences From
Artifact [aae72d93b8]:
473 473 if props.note then
474 474 local nx, ny, nw, nh
475 475 if notes_right then
476 476 nx = 5.25 - (3 - k.w) -- :/
477 477 ny = 0
478 478 nw = 4 nh = k.h
479 479 else
480 - nx = 0 ny = 3
481 - nw = 4 nh = k,h
480 + nx = 0 ny = 2
481 + nw = 4 nh = k.h
482 482 end
483 483 t = t .. string.format([[
484 484 hypertext[%f,%f;%f,%f;note;<global valign=middle halign=justify size=20>%s]
485 485 ]], nx,ny,nw,nh, minetest.formspec_escape(props.note))
486 486 end
487 487 if k.icon then img = k.icon(result) end
488 488 if k.outdesc then ot = k.outdesc(result) else ot = desc_builtin(result) end