mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-02 20:06:43 +01:00
36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
|
package com.minelittlepony.unicopia.block;
|
||
|
|
||
|
import com.minelittlepony.unicopia.server.world.ZapAppleStageStore;
|
||
|
|
||
|
import net.minecraft.block.*;
|
||
|
import net.minecraft.server.world.ServerWorld;
|
||
|
import net.minecraft.util.math.*;
|
||
|
import net.minecraft.util.math.random.Random;
|
||
|
|
||
|
public class ZapAppleLeavesPlaceholderBlock extends AirBlock {
|
||
|
|
||
|
ZapAppleLeavesPlaceholderBlock() {
|
||
|
super(AbstractBlock.Settings.of(Material.AIR).noCollision().dropsNothing().air());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean hasRandomTicks(BlockState state) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Deprecated
|
||
|
@Override
|
||
|
public void scheduledTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
|
||
|
super.scheduledTick(state, world, pos, random);
|
||
|
|
||
|
ZapAppleStageStore store = ZapAppleStageStore.get(world);
|
||
|
ZapAppleStageStore.Stage newStage = store.getStage();
|
||
|
if (!world.isDay() && ZapAppleStageStore.Stage.HIBERNATING.mustChangeIntoInstantly(newStage)) {
|
||
|
world.setBlockState(pos, UBlocks.ZAP_LEAVES.getDefaultState().with(ZapAppleLeavesBlock.STAGE, newStage));
|
||
|
ZapAppleLeavesBlock.onStageChanged(store, newStage, world, state, pos, random);
|
||
|
}
|
||
|
|
||
|
world.scheduleBlockTick(pos, this, 1);
|
||
|
}
|
||
|
}
|