This repository was archived by the owner on Jul 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/net/htmlcsjs/htmlTech/common/item Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
import gregtech .api .items .metaitem .MetaItem ;
7
7
import gregtech .api .items .metaitem .StandardMetaItem ;
8
8
import gregtech .api .items .metaitem .stats .IItemBehaviour ;
9
+ import net .htmlcsjs .htmlTech .common .item .behaviors .LaserGunBehaviour ;
9
10
import net .htmlcsjs .htmlTech .common .item .behaviors .LaserInspectorToolBehaviour ;
10
11
import net .minecraft .client .resources .I18n ;
11
12
import net .minecraft .client .util .ITooltipFlag ;
23
24
import java .util .Arrays ;
24
25
import java .util .List ;
25
26
26
- import static net .htmlcsjs .htmlTech .common .item .HTMetaItems .EMPTY_LASER ;
27
- import static net .htmlcsjs .htmlTech .common .item .HTMetaItems .LASER_INSPECTOR ;
27
+ import static net .htmlcsjs .htmlTech .common .item .HTMetaItems .*;
28
28
29
29
public class HTMetaItem extends StandardMetaItem {
30
30
public HTMetaItem (short offset ) {
@@ -34,7 +34,7 @@ public HTMetaItem(short offset) {
34
34
public void registerSubItems () {
35
35
LASER_INSPECTOR = addItem (1 , "tool.laser.inspector" ).addComponents (new LaserInspectorToolBehaviour ()).setMaxStackSize (1 );
36
36
EMPTY_LASER = addItem (2 , "empty_laser" ).setMaxStackSize (1 );
37
- // LASER_GUN = addItem(3, "laser_gun").setMaxStackSize(1).addComponents(new LaserGunBehaviour());
37
+ LASER_GUN = addItem (3 , "laser_gun" ).setMaxStackSize (1 ).addComponents (new LaserGunBehaviour ());
38
38
}
39
39
40
40
@ Override
You can’t perform that action at this time.
0 commit comments