Because why not.

This commit is contained in:
Florian Nücke 2016-03-26 17:06:06 +01:00
parent bd5acfaf99
commit 8d38564a14

View File

@ -24,8 +24,7 @@ public class ConverterAgebook implements Converter {
output.put("flags", flags);
final NBTTagCompound flagsNbt = tag.getCompoundTag("Flags");
for (Object flag : flagsNbt.func_150296_c()) {
final String key = (String) flag;
for (String key : flagsNbt.getKeySet()) {
flags.put(key, flagsNbt.getBoolean(key));
}
}