Skip to content

Commit cc67d2c

Browse files
committed
Fix font argument serializer classes.
1 parent 4954952 commit cc67d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Common/src/main/java/net/darkhax/bookshelf/impl/BookshelfContentProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import net.darkhax.bookshelf.Constants;
44
import net.darkhax.bookshelf.api.registry.RegistryDataProvider;
55
import net.darkhax.bookshelf.impl.commands.BookshelfCommands;
6-
import net.darkhax.bookshelf.impl.commands.args.sss;
6+
import net.darkhax.bookshelf.impl.commands.args.FontArgument;
77
import net.darkhax.bookshelf.impl.data.recipes.crafting.ShapedDurabilityRecipe;
88
import net.darkhax.bookshelf.impl.data.recipes.crafting.ShapelessDurabilityRecipe;
99

@@ -14,7 +14,7 @@ public BookshelfContentProvider() {
1414
super(Constants.MOD_ID);
1515

1616
// Command Argument Types
17-
this.commandArguments.add(sss.class, () -> sss.SERIALIZER, "font");
17+
this.commandArguments.add(FontArgument.class, () -> FontArgument.SERIALIZER, "font");
1818

1919
// Command Builders
2020
this.commands.add(BookshelfCommands::new, "commands");

0 commit comments

Comments
 (0)