-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fix: Fixed the bug AdvancementListener.java can only get adventur…
…e achievements (And a bug causes server backend to report error)
- Loading branch information
Showing
2 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/com/eofitg/hardcore/listener/pointlistener/StructureListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
package com.eofitg.hardcore.listener.pointlistener; | ||
|
||
import com.eofitg.hardcore.listener.PointListener; | ||
import org.bukkit.event.EventHandler; | ||
import org.bukkit.event.player.PlayerMoveEvent; | ||
|
||
public class StructureListener extends PointListener { | ||
|
||
private static final String configName = "structure"; | ||
|
||
@EventHandler | ||
public void arriveStructure(PlayerMoveEvent e) { | ||
} | ||
|
||
} |