mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
added call to onBlockRedstoneChange
By: Tal Eisenberg <eisental@gmail.com>
This commit is contained in:
parent
4b7aafea5d
commit
97600e3c88
1 changed files with 3 additions and 0 deletions
|
@ -184,6 +184,9 @@ public final class JavaPluginLoader implements PluginLoader {
|
|||
case BLOCK_IGNITE:
|
||||
trueListener.onBlockIgnite((BlockIgniteEvent)event);
|
||||
break;
|
||||
case REDSTONE_CHANGE:
|
||||
trueListener.onBlockRedstoneChange((BlockFromToEvent)event);
|
||||
break;
|
||||
}
|
||||
} else if(listener instanceof ServerListener) {
|
||||
ServerListener trueListener = (ServerListener)listener;
|
||||
|
|
Loading…
Reference in a new issue