@@ -136,6 +136,7 @@ minetest.register_node("mesecons_pistons:piston_normal_off", {
136
136
paramtype2 = " facedir" ,
137
137
after_place_node = piston_orientate ,
138
138
mesecons_piston = pistonspec_normal ,
139
+ sounds = default .node_sound_wood_defaults (),
139
140
mesecons = {effector = {
140
141
action_on = piston_on ,
141
142
rules = piston_get_rules
@@ -163,6 +164,7 @@ minetest.register_node("mesecons_pistons:piston_normal_on", {
163
164
node_box = piston_on_box ,
164
165
selection_box = piston_on_box ,
165
166
mesecons_piston = pistonspec_normal ,
167
+ sounds = default .node_sound_wood_defaults (),
166
168
mesecons = {effector = {
167
169
action_off = piston_off ,
168
170
rules = piston_get_rules
@@ -215,6 +217,7 @@ minetest.register_node("mesecons_pistons:piston_sticky_off", {
215
217
paramtype2 = " facedir" ,
216
218
after_place_node = piston_orientate ,
217
219
mesecons_piston = pistonspec_sticky ,
220
+ sounds = default .node_sound_wood_defaults (),
218
221
mesecons = {effector = {
219
222
action_on = piston_on ,
220
223
rules = piston_get_rules
@@ -242,6 +245,7 @@ minetest.register_node("mesecons_pistons:piston_sticky_on", {
242
245
node_box = piston_on_box ,
243
246
selection_box = piston_on_box ,
244
247
mesecons_piston = pistonspec_sticky ,
248
+ sounds = default .node_sound_wood_defaults (),
245
249
mesecons = {effector = {
246
250
action_off = piston_off ,
247
251
rules = piston_get_rules
@@ -339,6 +343,7 @@ minetest.register_node("mesecons_pistons:piston_up_normal_on", {
339
343
node_box = piston_up_on_box ,
340
344
selection_box = piston_up_on_box ,
341
345
mesecons_piston = pistonspec_normal_up ,
346
+ sounds = default .node_sound_wood_defaults (),
342
347
mesecons = {effector = {
343
348
action_off = piston_off ,
344
349
}}
@@ -393,6 +398,7 @@ minetest.register_node("mesecons_pistons:piston_up_sticky_off", {
393
398
paramtype2 = " facedir" ,
394
399
drop = " mesecons_pistons:piston_sticky_off" ,
395
400
mesecons_piston = pistonspec_sticky_up ,
401
+ sounds = default .node_sound_wood_defaults (),
396
402
mesecons = {effector = {
397
403
action_on = piston_on ,
398
404
}}
@@ -419,6 +425,7 @@ minetest.register_node("mesecons_pistons:piston_up_sticky_on", {
419
425
node_box = piston_up_on_box ,
420
426
selection_box = piston_up_on_box ,
421
427
mesecons_piston = pistonspec_sticky_up ,
428
+ sounds = default .node_sound_wood_defaults (),
422
429
mesecons = {effector = {
423
430
action_off = piston_off ,
424
431
}}
@@ -491,6 +498,7 @@ minetest.register_node("mesecons_pistons:piston_down_normal_off", {
491
498
paramtype2 = " facedir" ,
492
499
drop = " mesecons_pistons:piston_normal_off" ,
493
500
mesecons_piston = pistonspec_normal_down ,
501
+ sounds = default .node_sound_wood_defaults (),
494
502
mesecons = {effector = {
495
503
action_on = piston_on ,
496
504
}}
@@ -517,6 +525,7 @@ minetest.register_node("mesecons_pistons:piston_down_normal_on", {
517
525
node_box = piston_down_on_box ,
518
526
selection_box = piston_down_on_box ,
519
527
mesecons_piston = pistonspec_normal_down ,
528
+ sounds = default .node_sound_wood_defaults (),
520
529
mesecons = {effector = {
521
530
action_off = piston_off ,
522
531
}}
@@ -567,6 +576,7 @@ minetest.register_node("mesecons_pistons:piston_down_sticky_off", {
567
576
paramtype2 = " facedir" ,
568
577
drop = " mesecons_pistons:piston_sticky_off" ,
569
578
mesecons_piston = pistonspec_sticky_down ,
579
+ sounds = default .node_sound_wood_defaults (),
570
580
mesecons = {effector = {
571
581
action_on = piston_on ,
572
582
}}
@@ -593,6 +603,7 @@ minetest.register_node("mesecons_pistons:piston_down_sticky_on", {
593
603
node_box = piston_down_on_box ,
594
604
selection_box = piston_down_on_box ,
595
605
mesecons_piston = pistonspec_sticky_down ,
606
+ sounds = default .node_sound_wood_defaults (),
596
607
mesecons = {effector = {
597
608
action_off = piston_off ,
598
609
}}
0 commit comments