Created
August 3, 2014 19:47
-
-
Save ryanwarsaw/527bdb4beb2556fabde0 to your computer and use it in GitHub Desktop.
SignListener
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
private static class SignListener implements Listener { | |
@EventHandler() | |
public void onSignWrite(SignChangeEvent sign) { | |
Player player = sign.getPlayer(); | |
for(int x = 1; x < 5; x = x+1) { | |
if(sign.getLine(x).equalsIgnoreCase("<3")) { | |
sign.setLine(x, "<heart>"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment