mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2024-12-02 13:13:30 +01:00
Fix
This commit is contained in:
parent
01effe18b1
commit
c130617e36
@ -36,7 +36,7 @@ public record MinionData(int ownerId, MinionType type, Direction direction, Loca
|
|||||||
}
|
}
|
||||||
|
|
||||||
String[] split = SEMICOLON.split(string);
|
String[] split = SEMICOLON.split(string);
|
||||||
Map<String, String> map = CollectionUtils.hashMap(split.length);
|
HashMap<String, String> map = CollectionUtils.hashMap(split.length);
|
||||||
for (String value : split) {
|
for (String value : split) {
|
||||||
String[] keyValue = DASH.split(value);
|
String[] keyValue = DASH.split(value);
|
||||||
if (keyValue.length != 2) continue;
|
if (keyValue.length != 2) continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user