Commit 13058a8a47d030b00a2d16a3eb42ed44529afc11
1 parent
ebb92d95
Fix incorrect silence chack in PluginChannels
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/mumfrey/liteloader/core/PluginChannels.java
| ... | ... | @@ -235,7 +235,7 @@ public abstract class PluginChannels<L extends CommonPluginChannelListener> impl |
| 235 | 235 | */ |
| 236 | 236 | public boolean isSilent() |
| 237 | 237 | { |
| 238 | - return (this != ChannelPolicy.DISPATCH_IF_REGISTERED); | |
| 238 | + return (this != ChannelPolicy.DISPATCH); | |
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | } | ... | ... |