-
-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d33fb83
commit 225ec1a
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
Xplat/src/main/java/vazkii/botania/mixin/ExperienceOrbAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |