Skip to content

Commit

Permalink
Remove [WIP] tag from the Void material
Browse files Browse the repository at this point in the history
Not needed anymore.
  • Loading branch information
IcarussOne committed Oct 7, 2024
1 parent 2655a2f commit dde17a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/mod/emt/balkonsexpansion/BEConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static class ThaumcraftSettings {
@Config.RequiresWorldRestart
public boolean TC_THAUMIUM_MATERIAL = true;

@Config.Name("Material: Void [WIP]")
@Config.Name("Material: Void")
@Config.Comment("Enables support for the Void material [default: true]")
@Config.RequiresWorldRestart
public boolean TC_VOID_MATERIAL = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public BEItemFlailVoid(String modId, String id, MeleeComponent component) {
@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected) {
super.onUpdate(stack, world, entity, itemSlot, isSelected);

if (stack.isItemDamaged() && entity != null && entity.ticksExisted % 20 == 0) {
stack.attemptDamageItem(-1, world.rand, entity instanceof EntityPlayerMP ? (EntityPlayerMP) entity : null);
}
Expand Down

0 comments on commit dde17a2

Please sign in to comment.