mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-22 10:57:43 +01:00
Updated Upstream (Paper)
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@bc0c3d88 Promote build channel to STABLE PaperMC/Paper@e90c034f Finalize unpick migration (#13463) PaperMC/Paper@94d0c97a Don't try to save scoreboard if there is no world loaded (#13471)
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
- if (!this.isSilent()) {
|
||||
+ if (!this.isSilent() && level.purpurConfig.witherPlaySpawnSound) { // Purpur - Toggle for Wither's spawn sound
|
||||
// CraftBukkit start - Use relative location for far away sounds
|
||||
// level.globalLevelEvent(1023, this.blockPosition(), 0);
|
||||
// level.globalLevelEvent(LevelEvent.SOUND_WITHER_BOSS_SPAWN, this.blockPosition(), 0);
|
||||
int viewDistance = level.getCraftServer().getViewDistance() * 16;
|
||||
@@ -379,8 +_,10 @@
|
||||
}
|
||||
|
||||
@@ -23,10 +23,10 @@
|
||||
@@ -76,6 +_,10 @@
|
||||
} else {
|
||||
if (blockState.getBlock() instanceof LiquidBlock) {
|
||||
blockList.setBlock(blockPos, Blocks.AIR.defaultBlockState(), 3); // CraftBukkit
|
||||
blockList.setBlock(blockPos, Blocks.AIR.defaultBlockState(), Block.UPDATE_ALL); // CraftBukkit
|
||||
+ // Purpur start - Option for sponges to work on lava and mud
|
||||
+ } else if (blockState.is(Blocks.MUD)) {
|
||||
+ blockList.setBlock(blockPos, Blocks.CLAY.defaultBlockState(), 3);
|
||||
+ blockList.setBlock(blockPos, Blocks.CLAY.defaultBlockState(), Block.UPDATE_ALL);
|
||||
+ // Purpur end - Option for sponges to work on lava and mud
|
||||
} else {
|
||||
if (!blockState.is(Blocks.KELP)
|
||||
|
||||
Reference in New Issue
Block a user