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>();
|
return new HashMap<String, String>();
|
||||||
}
|
}
|
||||||
|
|
||||||
String blocksFirst;
|
char blocksFirst;
|
||||||
String itemsFirst;
|
char itemsFirst;
|
||||||
if (item.getType().isBlock()) {
|
if (item.getType().isBlock()) {
|
||||||
blocksFirst = "!"; // ! is before # in ASCII
|
blocksFirst = '!'; // ! is before # in ASCII
|
||||||
itemsFirst = "#";
|
itemsFirst = '#';
|
||||||
} else {
|
} else {
|
||||||
blocksFirst = "#";
|
blocksFirst = '#';
|
||||||
itemsFirst = "!";
|
itemsFirst = '!';
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] typeAndColor = getTypeAndColor(item.getType().name());
|
String[] typeAndColor = getTypeAndColor(item.getType().name());
|
||||||
|
Loading…
Reference in New Issue
Block a user