Expose API for managing and using GameRules. Adds BUKKIT-2757

This commit is contained in:
feildmaster
2012-10-30 21:24:48 -05:00
committed by EvilSeph
parent 59dc403a61
commit 9e4e2c62af
3 changed files with 42 additions and 14 deletions

View File

@@ -1197,4 +1197,26 @@ public class CraftWorld implements World {
getHandle().makeSound(x, y, z, CraftSound.getSound(sound), volume, pitch);
}
public String getGameRuleValue(String rule) {
return getHandle().getGameRules().get(rule);
}
public boolean setGameRuleValue(String rule, String value) {
// No null values allowed
if (rule == null || value == null) return false;
if (!isGameRule(rule)) return false;
getHandle().getGameRules().set(rule, value);
return true;
}
public String[] getGameRules() {
return getHandle().getGameRules().b();
}
public boolean isGameRule(String rule) {
return getHandle().getGameRules().e(rule);
}
}