Renamed some classes.

This commit is contained in:
sk89q
2010-11-04 22:57:56 -07:00
parent 4d06bc5df1
commit 7befb2e051
5 changed files with 20 additions and 20 deletions

View File

@ -44,8 +44,8 @@ public class WorldEdit extends Plugin {
/**
* WorldEditLibrary instance.
*/
private static final WorldEditLibrary worldEdit =
WorldEditLibrary.setup(new HmodServerInterface());
private static final WorldEditController worldEdit =
WorldEditController.setup(new HmodServerInterface());
/**
* Listener for the plugin system.
*/
@ -87,7 +87,7 @@ public class WorldEdit extends Plugin {
// Get allowed blocks
HashSet<Integer> allowedBlocks = new HashSet<Integer>();
for (String b : properties.getString("allowed-blocks",
WorldEditLibrary.getDefaultAllowedBlocks()).split(",")) {
WorldEditController.getDefaultAllowedBlocks()).split(",")) {
try {
allowedBlocks.add(Integer.parseInt(b));
} catch (NumberFormatException e) {