Skip to content

Commit

Permalink
Fix new checked tag queue
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Sep 9, 2023
1 parent a80ea5d commit e8851ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import com.mojang.datafixers.util.Pair;
import dev.lukebemish.dynamicassetgenerator.api.DataResourceCache;
import dev.lukebemish.dynamicassetgenerator.api.ResourceCache;
import dev.lukebemish.excavatedvariants.TagQueue;
import dev.lukebemish.excavatedvariants.api.DataProvider;
import dev.lukebemish.excavatedvariants.api.DataReceiver;
import dev.lukebemish.excavatedvariants.api.data.Ore;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

package dev.lukebemish.excavatedvariants;
package dev.lukebemish.excavatedvariants.impl;

import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.resources.ResourceLocation;
Expand Down Expand Up @@ -40,7 +40,7 @@ public Map<ResourceLocation, Set<ResourceLocation>> get() {
set.add(rl);
}
}
out.put(entry.getKey(), entry.getValue());
out.put(entry.getKey(), set);
}

return out;
Expand Down

0 comments on commit e8851ea

Please sign in to comment.