Small mistakes!

This commit is contained in:
Acrobot 2011-06-09 23:00:27 +02:00
parent 677fe9668b
commit 3f6fb7ed03
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public class blockBreak extends BlockListener {
Sign sign = SearchForBlock.findSign(block);
if (sign != null) {
if (!player.getName().startsWith(sign.getLine(0))) {
if (!player.getName().equals(sign.getLine(0))) {
event.setCancelled(true);
}
}