Skip to content

Commit

Permalink
Fixed tag logging method
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Jul 24, 2024
1 parent 5ad4442 commit 07087b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public interface TagLoaderKJS<T> {
kjs$resources.kjs$getServerScriptManager().getRegistries().cacheTags(reg, map);

if (DataExport.export != null) {
var loc = "tags/" + objStorage.key.location() + "/";
var loc = "tags/" + objStorage + "/";

for (var entry : map.entrySet()) {
var list = new ArrayList<String>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,9 @@ private RegistryObjectStorage(ResourceKey key) {
public Iterator<BuilderBase<? extends T>> iterator() {
return objects.values().iterator();
}

@Override
public String toString() {
return key.location().toString();
}
}

0 comments on commit 07087b5

Please sign in to comment.