Fixed minor issues, moved some classes.

This commit is contained in:
sk89q
2011-01-23 02:03:49 -08:00
parent 2bb9a9390f
commit af1acd42b8
5 changed files with 111 additions and 37 deletions

View File

@@ -35,7 +35,17 @@ public class NoteBlock extends BaseBlock implements TileEntityBlock {
private byte note;
/**
* Construct the sign without text.
* Construct the note block.
*
* @param data
*/
public NoteBlock() {
super(25);
this.note = 0;
}
/**
* Construct the note block.
*
* @param data
*/
@@ -45,7 +55,7 @@ public class NoteBlock extends BaseBlock implements TileEntityBlock {
}
/**
* Construct the sign with text.
* Construct the note block.
*
* @param note
*/