Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WenXin20 committed Sep 8, 2024
1 parent e7d55ee commit 0a2fdb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/wenxin2/marioverse/init/ConfigRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ private ConfigRegistry() {
.comment("§9[Default: true]")
.define("question_spawns_mobs", true);
QUESTION_ADD_ITEMS = BUILDER.translation("configuration.marioverse.question_add_items")
.comment("Allow players to add items to questions blocks using right-click.")
.comment("Allow players to add items to question blocks using right-click.")
.comment("§9[Default: true]")
.define("question_add_items", true);
QUESTION_REMOVE_ITEMS = BUILDER.translation("configuration.marioverse.question_remove_items")
.comment("Allow players to activate questions blocks using right-click.")
.comment("Allow players to activate question blocks using right-click.")
.comment("§9[Default: true]")
.define("question_remove_items", true);
REDSTONE_OPENS_QUESTION = BUILDER.translation("configuration.marioverse.redstone_opens_question")
.comment("Allow redstone to activate questions blocks.")
.comment("Allow redstone to activate question blocks.")
.comment("§9[Default: true]")
.define("redstone_opens_question", true);
BUILDER.pop();
Expand Down

0 comments on commit 0a2fdb7

Please sign in to comment.