mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-18 00:25:39 +01:00
30 lines
1.5 KiB
Diff
30 lines
1.5 KiB
Diff
--- a/net/minecraft/server/BehaviorWorkComposter.java
|
|
+++ b/net/minecraft/server/BehaviorWorkComposter.java
|
|
@@ -11,7 +11,7 @@
|
|
public BehaviorWorkComposter() {}
|
|
|
|
@Override
|
|
- protected void a(WorldServer worldserver, EntityVillager entityvillager) {
|
|
+ protected void doWork(WorldServer worldserver, EntityVillager entityvillager) { // PAIL
|
|
Optional<GlobalPos> optional = entityvillager.getBehaviorController().getMemory(MemoryModuleType.JOB_SITE);
|
|
|
|
if (optional.isPresent()) {
|
|
@@ -28,7 +28,7 @@
|
|
|
|
private void a(WorldServer worldserver, EntityVillager entityvillager, GlobalPos globalpos, IBlockData iblockdata) {
|
|
if ((Integer) iblockdata.get(BlockComposter.a) == 8) {
|
|
- iblockdata = BlockComposter.d(iblockdata, (World) worldserver, globalpos.getBlockPosition());
|
|
+ iblockdata = BlockComposter.d(iblockdata, (World) worldserver, globalpos.getBlockPosition(), entityvillager); // CraftBukkit
|
|
}
|
|
|
|
int i = 20;
|
|
@@ -52,7 +52,7 @@
|
|
i -= k1;
|
|
|
|
for (int l1 = 0; l1 < k1; ++l1) {
|
|
- iblockdata = BlockComposter.a(iblockdata, worldserver, itemstack, globalpos.getBlockPosition());
|
|
+ iblockdata = BlockComposter.a(iblockdata, worldserver, itemstack, globalpos.getBlockPosition(), entityvillager); // CraftBukkit
|
|
if ((Integer) iblockdata.get(BlockComposter.a) == 7) {
|
|
return;
|
|
}
|