11ServerEvents . tags ( "item" ,  ( allthemods )  =>  { 
2-     let  dusts  =  [ 
3-         'oritech:small_copper_dust' , 
4-         'oritech:small_nickel_dust' , 
5-         'oritech:small_platinum_dust' , 
6-         'oritech:small_iron_dust' , 
7-         'oritech:small_gold_dust' , 
8-         'oritech:small_uranium_dust' , 
9-         'oritech:small_plutonium_dust' 
10-     ] 
11-     let  dustsUnTagged  =  [ 
12-         "copper" , 
13-         "nickel" , 
14-         "platinum" , 
15-         "iron" , 
16-         "gold" , 
17-         "uranium" , 
18-         "plutonium" 
19-     ] 
20-     allthemods . add ( "c:tiny_dusts" ,  dusts ) 
21-     function  dust ( material )  { 
22-         allthemods . add ( `c:tiny_dusts/${ material }  ` ,  [ `oritech:small_${ material }  _dust` ] ) ; 
23-     } 
2+   let  dusts  =  [ 
3+     "oritech:small_copper_dust" , 
4+     "oritech:small_nickel_dust" , 
5+     "oritech:small_platinum_dust" , 
6+     "oritech:small_iron_dust" , 
7+     "oritech:small_gold_dust" , 
8+     "oritech:small_uranium_dust" , 
9+     "oritech:small_plutonium_dust" 
10+   ] 
11+   let  dustsUnTagged  =  [ "copper" ,  "nickel" ,  "platinum" ,  "iron" ,  "gold" ,  "uranium" ,  "plutonium" ] 
12+   allthemods . add ( "c:tiny_dusts" ,  dusts ) 
13+   function  dust ( material )  { 
14+     allthemods . add ( `c:tiny_dusts/${ material }  ` ,  [ `oritech:small_${ material }  _dust` ] ) 
15+   } 
2416
25-     for  ( let  i  =  0 ;  i  <=  dustsUnTagged . length ;  i ++ )  { 
26-         dust ( dustsUnTagged [ i ] ) ; 
27-     } 
28-         
29- 
30- } ) 
17+   for  ( let  i  =  0 ;  i  <=  dustsUnTagged . length ;  i ++ )  { 
18+     dust ( dustsUnTagged [ i ] ) 
19+   } 
20+ } ) 
0 commit comments