mirror of
https://github.com/zyllian/classics.git
synced 2025-01-17 19:22:37 -08:00
slow fluid spread
This commit is contained in:
parent
990777e5b4
commit
37c82d8755
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ pub static BLOCK_INFO: LazyLock<BTreeMap<u8, BlockInfo>> = LazyLock::new(|| {
|
|||
BlockInfo::new("water_flowing")
|
||||
.block_type(BlockType::FluidFlowing {
|
||||
stationary: 0x09,
|
||||
ticks_to_spread: 1,
|
||||
ticks_to_spread: 3,
|
||||
})
|
||||
.perm(PlayerType::Operator, PlayerType::Normal),
|
||||
),
|
||||
|
@ -41,7 +41,7 @@ pub static BLOCK_INFO: LazyLock<BTreeMap<u8, BlockInfo>> = LazyLock::new(|| {
|
|||
BlockInfo::new("lava_flowing")
|
||||
.block_type(BlockType::FluidFlowing {
|
||||
stationary: 0x0b,
|
||||
ticks_to_spread: 5,
|
||||
ticks_to_spread: 15,
|
||||
})
|
||||
.perm(PlayerType::Operator, PlayerType::Normal),
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue