mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
341 B
Java
18 lines
341 B
Java
package com.hbm.items.weapon;
|
|
|
|
import com.hbm.handler.GunConfiguration;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class ItemGunDetonator extends ItemGunBase {
|
|
|
|
public ItemGunDetonator(GunConfiguration config) {
|
|
super(config);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasInfinity(ItemStack stack, GunConfiguration config) {
|
|
return true;
|
|
}
|
|
}
|