mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-19 04:06:43 -04:00
Because why not.
This commit is contained in:
parent
bd5acfaf99
commit
8d38564a14
@ -24,8 +24,7 @@ public class ConverterAgebook implements Converter {
|
|||||||
output.put("flags", flags);
|
output.put("flags", flags);
|
||||||
|
|
||||||
final NBTTagCompound flagsNbt = tag.getCompoundTag("Flags");
|
final NBTTagCompound flagsNbt = tag.getCompoundTag("Flags");
|
||||||
for (Object flag : flagsNbt.func_150296_c()) {
|
for (String key : flagsNbt.getKeySet()) {
|
||||||
final String key = (String) flag;
|
|
||||||
flags.put(key, flagsNbt.getBoolean(key));
|
flags.put(key, flagsNbt.getBoolean(key));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user