mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-04 09:40:14 +01:00
commit
fe71654f5b
@ -58,7 +58,7 @@ public class MappingData {
|
|||||||
JsonArray ids = entry.getValue().getAsJsonArray();
|
JsonArray ids = entry.getValue().getAsJsonArray();
|
||||||
int[] idsArray = new int[ids.size()];
|
int[] idsArray = new int[ids.size()];
|
||||||
for (int i = 0; i < ids.size(); i++) {
|
for (int i = 0; i < ids.size(); i++) {
|
||||||
idsArray[i] = Integer.parseInt(ids.get(i).getAsString());
|
idsArray[i] = ids.get(i).getAsInt();
|
||||||
}
|
}
|
||||||
output.put(entry.getKey(), idsArray);
|
output.put(entry.getKey(), idsArray);
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user