Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
htmlcsjs committed Feb 27, 2022
1 parent b4f1f87 commit 060e88c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apply {
val mcVersion = "1.12.2"
val forgeVersion = "14.23.5.2847"
val mcFullVersion = "$mcVersion-$forgeVersion"
val modVersion = "0.1.2-beta"
val modVersion = "0.1.3-beta"
version = "$mcVersion-$modVersion"
group = "net.htmlcsjs.htmlTech"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/htmlcsjs/htmlTech/HtmlTech.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.apache.logging.log4j.Logger;

@Mod(modid = HtmlTech.MODID, name = HtmlTech.NAME, version = HtmlTech.VERSION,
dependencies = "required-after:gregtech;")
dependencies = GTValues.MOD_VERSION_DEP)
public class HtmlTech {
public static final String MODID = HTValues.MODID;
public static final String NAME = HTValues.MOD_NAME;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import gregtech.api.items.metaitem.MetaItem;
import gregtech.api.items.metaitem.StandardMetaItem;
import gregtech.api.items.metaitem.stats.IItemBehaviour;
import net.htmlcsjs.htmlTech.common.item.behaviors.LaserGunBehaviour;
import net.htmlcsjs.htmlTech.common.item.behaviors.LaserInspectorToolBehaviour;
import net.minecraft.client.resources.I18n;
import net.minecraft.client.util.ITooltipFlag;
Expand All @@ -24,7 +23,8 @@
import java.util.Arrays;
import java.util.List;

import static net.htmlcsjs.htmlTech.common.item.HTMetaItems.*;
import static net.htmlcsjs.htmlTech.common.item.HTMetaItems.EMPTY_LASER;
import static net.htmlcsjs.htmlTech.common.item.HTMetaItems.LASER_INSPECTOR;

public class HTMetaItem extends StandardMetaItem {
public HTMetaItem(short offset) {
Expand All @@ -34,7 +34,7 @@ public HTMetaItem(short offset) {
public void registerSubItems() {
LASER_INSPECTOR = addItem(1, "tool.laser.inspector").addComponents(new LaserInspectorToolBehaviour()).setMaxStackSize(1);
EMPTY_LASER = addItem(2, "empty_laser").setMaxStackSize(1);
LASER_GUN = addItem(3, "laser_gun").setMaxStackSize(1).addComponents(new LaserGunBehaviour());
//LASER_GUN = addItem(3, "laser_gun").setMaxStackSize(1).addComponents(new LaserGunBehaviour());
}

@Override
Expand Down

0 comments on commit 060e88c

Please sign in to comment.