Xpanes: minor update

This commit is contained in:
MoNTE48 2020-08-31 20:56:18 +02:00
parent 4e6409fa15
commit 924d6d4011
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ function xpanes.register_pane(name, def)
groups = flatgroups,
drop = def.drop,
sounds = def.sounds,
use_texture_alpha = def.use_texture_alpha or false,
use_texture_alpha = def.use_texture_alpha ~= nil or true,
node_box = {
type = "fixed",
fixed = {-1/2, -1/2, -1/32, 1/2, 1/2, 1/32}
@ -131,7 +131,7 @@ function xpanes.register_pane(name, def)
groups = groups,
drop = def.drop,
sounds = def.sounds,
use_texture_alpha = def.use_texture_alpha or false,
use_texture_alpha = def.use_texture_alpha ~= nil or true,
node_box = {
type = "connected",
fixed = {-1/32, -1/2, -1/32, 1/32, 1/2, 1/32},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 458 B

After

Width:  |  Height:  |  Size: 456 B