Skip to content

Commit

Permalink
oh hi spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
artemisSystem committed Aug 5, 2024
1 parent d33fb83 commit 225ec1a
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package vazkii.botania.mixin;

import net.minecraft.world.entity.ExperienceOrb;

import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;

@Mixin(ExperienceOrb.class)
public interface ExperienceOrbAccessor {
@Accessor("count")
int botania_getCount();
@Accessor("count")
int botania_getCount();

@Accessor("count")
void botania_setCount(int c);
@Accessor("count")
void botania_setCount(int c);
}

0 comments on commit 225ec1a

Please sign in to comment.