mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2024-11-29 12:45:18 +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);
|
||||
Map<String, String> map = CollectionUtils.hashMap(split.length);
|
||||
HashMap<String, String> map = CollectionUtils.hashMap(split.length);
|
||||
for (String value : split) {
|
||||
String[] keyValue = DASH.split(value);
|
||||
if (keyValue.length != 2) continue;
|
||||
|
Loading…
Reference in New Issue
Block a user