diff options
author | 12Me21 <y.12Me21@gmail.com> | 2018-10-07 00:32:12 -0400 |
---|---|---|
committer | 12Me21 <y.12Me21@gmail.com> | 2018-10-07 00:32:12 -0400 |
commit | 125cae3300ce8a66e470fcb0414d76e587edabd6 (patch) | |
tree | b4d2762c9c0184bdb3229443d849288c53726d80 | |
parent | aac0ccf5912f569d7498cadaf282f20b11b12a6c (diff) | |
download | display_modpack-125cae3300ce8a66e470fcb0414d76e587edabd6.tar.gz display_modpack-125cae3300ce8a66e470fcb0414d76e587edabd6.tar.bz2 display_modpack-125cae3300ce8a66e470fcb0414d76e587edabd6.zip |
Fixes collision boxes on right directional signs
-rw-r--r-- | signs_road/nodes.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/signs_road/nodes.lua b/signs_road/nodes.lua index ab95b2b..b560e96 100644 --- a/signs_road/nodes.lua +++ b/signs_road/nodes.lua @@ -189,7 +189,7 @@ local models = { drawtype = "mesh", mesh = "signs_dir_right.obj", selection_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, - collision_box = { type = "fixed", fixed = { -0,5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, + collision_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, }, }, green_left_sign = { @@ -237,7 +237,7 @@ local models = { drawtype = "mesh", mesh = "signs_dir_right.obj", selection_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, - collision_box = { type = "fixed", fixed = { -0,5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, + collision_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, }, }, yellow_left_sign = { @@ -285,7 +285,7 @@ local models = { drawtype = "mesh", mesh = "signs_dir_right.obj", selection_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, - collision_box = { type = "fixed", fixed = { -0,5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, + collision_box = { type = "fixed", fixed = { -0.5, -7/32, 0.5, 7/16, 7/32, 7/16 } }, }, }, white_left_sign = { |