Skip to content

Commit

Permalink
Fix the dObjects
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jan 13, 2015
1 parent 44b74c9 commit 6193afc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/net/aufdemrand/denizen/Denizen.java
Expand Up @@ -386,8 +386,6 @@ public void onEnable() {
eventManager = new OldEventManager();
eventManager().registerCoreMembers();

// Register Core dObjects with the ObjectFetcher
ObjectFetcher._registerCoreObjects();

ObjectFetcher.registerWithObjectFetcher(dItem.class); // i@
ObjectFetcher.registerWithObjectFetcher(dCuboid.class); // cu@
Expand All @@ -403,6 +401,9 @@ public void onEnable() {
ObjectFetcher.registerWithObjectFetcher(dChunk.class); // ch@
ObjectFetcher.registerWithObjectFetcher(dPlugin.class); // pl@
ObjectFetcher.registerWithObjectFetcher(dEllipsoid.class); // ellipsoid@

// Register Core dObjects with the ObjectFetcher
ObjectFetcher._registerCoreObjects();
}
catch (Exception e) {
dB.echoError(e);
Expand Down

0 comments on commit 6193afc

Please sign in to comment.