Skip to content

Commit

Permalink
Fix some naming issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Talamar1 committed Jul 4, 2015
1 parent f889a08 commit 1a1d27c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -84,7 +84,7 @@ public HashMap<String, dObject> getContext() {
}

@EventHandler
public void onEntityEntersPortal(PlayerBedEnterEvent event) {
public void onEntityEntersBed(PlayerBedEnterEvent event) {
location = new dLocation(event.getBed().getLocation());
cancelled = event.isCancelled();
this.event = event;
Expand Down
Expand Up @@ -84,7 +84,7 @@ public HashMap<String, dObject> getContext() {
}

@EventHandler
public void onEntityLeavesPortal(PlayerBedLeaveEvent event) {
public void onEntityLeavesBed(PlayerBedLeaveEvent event) {
location = new dLocation(event.getBed().getLocation());
this.event = event;
fire();
Expand Down

0 comments on commit 1a1d27c

Please sign in to comment.