summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormd_5 <md_5@bigpond.com>2012-03-05 18:40:18 +1100
committermd_5 <md_5@bigpond.com>2012-03-05 18:40:18 +1100
commit0b60d4efe2fed324131e083f6d4168256d943588 (patch)
treef09456c3b504de66f3f0bdbe1aceab8647c3a0e2
parentd31e434e4dd8f58ea1da760f931693342631565c (diff)
downloadEssentials-0b60d4efe2fed324131e083f6d4168256d943588.tar
Essentials-0b60d4efe2fed324131e083f6d4168256d943588.tar.gz
Essentials-0b60d4efe2fed324131e083f6d4168256d943588.tar.lz
Essentials-0b60d4efe2fed324131e083f6d4168256d943588.tar.xz
Essentials-0b60d4efe2fed324131e083f6d4168256d943588.zip
I dont think free noteblocks are a good idea
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandessentials.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
index 56432a91f..ce2f03af9 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
@@ -117,7 +117,7 @@ public class Commandessentials extends EssentialsCommand
if (loc.getBlock().getTypeId() == 0)
{
noteBlocks.put(player, loc.getBlock());
- loc.getBlock().setType(Material.NOTE_BLOCK);
+ player.sendBlockChange(loc, Material.NOTE_BLOCK, (byte)0);
}
}
taskid = ess.scheduleSyncRepeatingTask(new Runnable()
@@ -149,7 +149,6 @@ public class Commandessentials extends EssentialsCommand
}
}
}, 20, 2);
- return;
}
private void stopTune()