
net.minecraft.server.ScoreboardBaseCriteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
package net.minecraft.server;
import java.util.List;
public class ScoreboardBaseCriteria implements IScoreboardCriteria {
private final String j;
public ScoreboardBaseCriteria(String s) {
this.j = s;
IScoreboardCriteria.criteria.put(s, this);
}
public String getName() {
return this.j;
}
public int getScoreModifier(List list) {
return 0;
}
public boolean isReadOnly() {
return false;
}
public EnumScoreboardHealthDisplay c() {
return EnumScoreboardHealthDisplay.INTEGER;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy