Skip to content

Commit

Permalink
fix: Fix incorrect category name
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed May 30, 2024
1 parent cdef2ab commit cad0d2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public abstract class AbstractManagedKeyMappingBuilder implements ManagedKeyMapp

public AbstractManagedKeyMappingBuilder(ResourceLocation id) {
this.id = id;
category = "key.category." + id.getNamespace();
category = "key.categories." + id.getNamespace();
}

@Override
Expand Down

0 comments on commit cad0d2d

Please sign in to comment.