mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-04-12 16:50:31 +08:00
Fix ResultedEvent.GenericResult.DENIED
It was true! Signed-off-by: Jadon Fowler <jadonflower@gmail.com>
This commit is contained in:
parent
168c36facf
commit
32409c201e
@ -41,7 +41,7 @@ public interface ResultedEvent<R extends ResultedEvent.Result> {
|
||||
*/
|
||||
class GenericResult implements Result {
|
||||
private static final GenericResult ALLOWED = new GenericResult(true);
|
||||
private static final GenericResult DENIED = new GenericResult(true);
|
||||
private static final GenericResult DENIED = new GenericResult(false);
|
||||
|
||||
private final boolean allowed;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user