summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormd_5 <md_5@bigpond.com>2012-03-05 18:40:18 +1100
committerKHobbits <rob@khobbits.co.uk>2012-03-05 08:37:16 +0000
commit0dd5c0370ee0cd01ec07cf3b6acef67985e5999e (patch)
tree9a0e433c6def976a72d057f1604d641e7ca80561
parentbdf32cde9e3ca43c0fcf35dac57160e8cd1db4ac (diff)
downloadEssentials-0dd5c0370ee0cd01ec07cf3b6acef67985e5999e.tar
Essentials-0dd5c0370ee0cd01ec07cf3b6acef67985e5999e.tar.gz
Essentials-0dd5c0370ee0cd01ec07cf3b6acef67985e5999e.tar.lz
Essentials-0dd5c0370ee0cd01ec07cf3b6acef67985e5999e.tar.xz
Essentials-0dd5c0370ee0cd01ec07cf3b6acef67985e5999e.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()