mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 05:26:50 +01:00
Stationary lava is also a LAVA ignition cause.
This commit is contained in:
parent
abee107830
commit
6f9e4f8541
1 changed files with 10 additions and 9 deletions
|
@ -560,15 +560,16 @@ public class CraftEventFactory {
|
||||||
Block igniter = bukkitWorld.getBlockAt(igniterX, igniterY, igniterZ);
|
Block igniter = bukkitWorld.getBlockAt(igniterX, igniterY, igniterZ);
|
||||||
IgniteCause cause;
|
IgniteCause cause;
|
||||||
switch (igniter.getType()) {
|
switch (igniter.getType()) {
|
||||||
case LAVA:
|
case LAVA:
|
||||||
cause = IgniteCause.LAVA;
|
case STATIONARY_LAVA:
|
||||||
break;
|
cause = IgniteCause.LAVA;
|
||||||
case DISPENSER:
|
break;
|
||||||
cause = IgniteCause.FLINT_AND_STEEL;
|
case DISPENSER:
|
||||||
break;
|
cause = IgniteCause.FLINT_AND_STEEL;
|
||||||
case FIRE: // Fire or any other unknown block counts as SPREAD.
|
break;
|
||||||
default:
|
case FIRE: // Fire or any other unknown block counts as SPREAD.
|
||||||
cause = IgniteCause.SPREAD;
|
default:
|
||||||
|
cause = IgniteCause.SPREAD;
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockIgniteEvent event = new BlockIgniteEvent(bukkitWorld.getBlockAt(x, y, z), cause, igniter);
|
BlockIgniteEvent event = new BlockIgniteEvent(bukkitWorld.getBlockAt(x, y, z), cause, igniter);
|
||||||
|
|
Loading…
Reference in a new issue