mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56: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);
|
||||
IgniteCause cause;
|
||||
switch (igniter.getType()) {
|
||||
case LAVA:
|
||||
cause = IgniteCause.LAVA;
|
||||
break;
|
||||
case DISPENSER:
|
||||
cause = IgniteCause.FLINT_AND_STEEL;
|
||||
break;
|
||||
case FIRE: // Fire or any other unknown block counts as SPREAD.
|
||||
default:
|
||||
cause = IgniteCause.SPREAD;
|
||||
case LAVA:
|
||||
case STATIONARY_LAVA:
|
||||
cause = IgniteCause.LAVA;
|
||||
break;
|
||||
case DISPENSER:
|
||||
cause = IgniteCause.FLINT_AND_STEEL;
|
||||
break;
|
||||
case FIRE: // Fire or any other unknown block counts as SPREAD.
|
||||
default:
|
||||
cause = IgniteCause.SPREAD;
|
||||
}
|
||||
|
||||
BlockIgniteEvent event = new BlockIgniteEvent(bukkitWorld.getBlockAt(x, y, z), cause, igniter);
|
||||
|
|
Loading…
Reference in a new issue