mirror of
https://github.com/JEFF-Media-GbR/ChestSort.git
synced 2024-12-02 15:43:22 +01:00
Undid change from char to String
This commit is contained in:
parent
a8726cc643
commit
7e151cd3c4
@ -348,14 +348,14 @@ public class ChestSortOrganizer {
|
||||
return new HashMap<String, String>();
|
||||
}
|
||||
|
||||
String blocksFirst;
|
||||
String itemsFirst;
|
||||
char blocksFirst;
|
||||
char itemsFirst;
|
||||
if (item.getType().isBlock()) {
|
||||
blocksFirst = "!"; // ! is before # in ASCII
|
||||
itemsFirst = "#";
|
||||
blocksFirst = '!'; // ! is before # in ASCII
|
||||
itemsFirst = '#';
|
||||
} else {
|
||||
blocksFirst = "#";
|
||||
itemsFirst = "!";
|
||||
blocksFirst = '#';
|
||||
itemsFirst = '!';
|
||||
}
|
||||
|
||||
String[] typeAndColor = getTypeAndColor(item.getType().name());
|
||||
|
Loading…
Reference in New Issue
Block a user