mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-03-30 08:50:33 +02:00
signs aren't ground content
also some whitespace indent fixes
This commit is contained in:
parent
5875e1aa96
commit
864a760b6e
@ -193,10 +193,13 @@ function signs_api.register_sign(mod, name, model)
|
|||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-model.width/2, -model.height/2, 0.5,
|
fixed = {
|
||||||
model.width/2, model.height/2, 0.5 - model.depth},
|
-model.width/2, -model.height/2, 0.5,
|
||||||
|
model.width/2, model.height/2, 0.5 - model.depth
|
||||||
|
},
|
||||||
},
|
},
|
||||||
groups = {choppy=2, dig_immediate=2, not_blocking_trains=1, display_api=1},
|
groups = {choppy=2, dig_immediate=2, not_blocking_trains=1, display_api=1},
|
||||||
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_defaults(),
|
sounds = default.node_sound_defaults(),
|
||||||
display_entities = {
|
display_entities = {
|
||||||
["signs:display_text"] = {
|
["signs:display_text"] = {
|
||||||
@ -206,7 +209,6 @@ function signs_api.register_sign(mod, name, model)
|
|||||||
aspect_ratio = 1/2,
|
aspect_ratio = 1/2,
|
||||||
maxlines = 1,
|
maxlines = 1,
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
on_place = display_api.on_place,
|
on_place = display_api.on_place,
|
||||||
on_construct = function(pos)
|
on_construct = function(pos)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user