Spaces:
Build error
Build error
package net.minecraft.commands; | |
import net.minecraft.network.chat.Component; | |
public interface CommandSource { | |
CommandSource NULL = new CommandSource() { | |
public void sendSystemMessage(Component p_230799_) { | |
} | |
public boolean acceptsSuccess() { | |
return false; | |
} | |
public boolean acceptsFailure() { | |
return false; | |
} | |
public boolean shouldInformAdmins() { | |
return false; | |
} | |
}; | |
void sendSystemMessage(Component p_230797_); | |
boolean acceptsSuccess(); | |
boolean acceptsFailure(); | |
boolean shouldInformAdmins(); | |
default boolean alwaysAccepts() { | |
return false; | |
} | |
} |