1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
package com.keuin.ohmyvanillamc.mixin;
import com.keuin.ohmyvanillamc.OhMyVanillaMinecraft;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SugarCaneBlock;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.state.property.IntProperty;
import net.minecraft.util.math.BlockPos;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;
import org.spongepowered.asm.mixin.Shadow;
import java.util.Random;
@Mixin(SugarCaneBlock.class)
public abstract class Mc113809SugarCaneBlockMixin extends Block {
public Mc113809SugarCaneBlockMixin(Settings settings) {
super(settings);
}
@Shadow
@Final
public static IntProperty AGE;
/**
* Revert to base class (Block) implementation of randomTick: just simply call scheduledTick.
* (both 1.15.2 and 1.16.4 are the same)
*
* @author trueKeuin
* @reason revert to the base class `Block` implementation.
*/
@Overwrite
public void randomTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
if (OhMyVanillaMinecraft.getConfiguration().isReintroduceZeroTickFarm()) {
scheduledTick(state, world, pos, random);
} else if (world.isAir(pos.up())) { // here goes 1.16.4 version randomTick impl.
realGrow(state, world, pos);
}
}
/**
* Reintroduce the MC-113809 glitch for sugar cane. The implementation is identical to Minecraft 1.15.2.
*
* @author trueKeuin
* @reason reintroduce MC-113809 for sugar cane.
*/
@Overwrite
public void scheduledTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
if (!state.canPlaceAt(world, pos)) {
world.breakBlock(pos, true);
} else if (world.isAir(pos.up()) && OhMyVanillaMinecraft.getConfiguration().isReintroduceZeroTickFarm()) {
realGrow(state, world, pos);
}
}
private void realGrow(BlockState state, ServerWorld world, BlockPos pos) {
int i;
for (i = 1; world.getBlockState(pos.down(i)).isOf((SugarCaneBlock) (Object) this); ++i) {
}
if (i < 3) {
int j = state.get(AGE);
if (j == 15) {
world.setBlockState(pos.up(), this.getDefaultState());
world.setBlockState(pos, state.with(AGE, 0), 4);
} else {
world.setBlockState(pos, state.with(AGE, j + 1), 4);
}
}
}
}
|