Skip to content

Commit

Permalink
Fix tag extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Sep 24, 2020
1 parent 753e461 commit 301fe7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class MixinTagBuilder implements TagBuilderWarningAccessor {
private void onFromJson(JsonObject json, String string, CallbackInfoReturnable<Tag.Builder> info) {
try {
if (json.has("libcd")) {
TagExtensions.ExtensionResult result = TagExtensions.load(json);
TagExtensions.ExtensionResult result = TagExtensions.load(json.getAsJsonObject("libcd"));

if (result.shouldReplace()) {
entries.clear();
Expand Down

0 comments on commit 301fe7f

Please sign in to comment.