Update to sparsetype parsing

This commit is contained in:
2024-04-22 13:01:25 -04:00
parent fcbb9b0cf1
commit 8ce81b144a
+1 -1
View File
@@ -547,7 +547,7 @@ public class ItemTemplate {
for (Object key : rune_sparse_json.keySet()) {
String sparseType = key.toString();
String sparseValue = (String) rune_sparse_json.get(sparseType);
String sparseValue = rune_sparse_json.getString(sparseType);
rune_sparse_data.put(sparseType, sparseValue);
}