Skip to content

Commit

Permalink
Fix drunk looking strings
Browse files Browse the repository at this point in the history
(ps, I'm never intoxicated idk these happen lmao I cannot avoid them)
(pps, it literally missed out "how" in that ps)
(ppps, if I don't read over my messages I'm going to continue forever pointing out my mistakes, like how I wrote "it" instead of "i" in the pps)
  • Loading branch information
GeorgeRNG committed Jan 13, 2024
1 parent 8a46e4a commit 3083af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/dev/dfonline/codeclient/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public YetAnotherConfigLib getLibConfig() {
.build())
.option(Option.createBuilder(float.class)
.name(Text.literal("Angle to go up"))
.description(OptionDescription.of(Text.literal("When facing up, within this angle, jumping will take you up a layer.")))
.description(OptionDescription.of(Text.literal("When facing up, within this angle, jumping will take you up a layer")))
.binding(
50F,
() -> UpAngle,
Expand All @@ -326,7 +326,7 @@ public YetAnotherConfigLib getLibConfig() {
.build())
.option(Option.createBuilder(boolean.class)
.name(Text.literal("Teleport Up"))
.description(OptionDescription.of(Text.literal("If when facing up")))
.description(OptionDescription.of(Text.literal("When jumping and facing up, you will get teleported to the layer above")))
.binding(
false,
() -> TeleportUp,
Expand All @@ -336,7 +336,7 @@ public YetAnotherConfigLib getLibConfig() {
.build())
.option(Option.createBuilder(boolean.class)
.name(Text.literal("Teleport Down"))
.description(OptionDescription.of(Text.literal("Teleport Down when using")))
.description(OptionDescription.of(Text.literal("When crouching and facing down, you will get teleported to the layer underneath")))
.binding(
false,
() -> TeleportDown,
Expand Down

0 comments on commit 3083af9

Please sign in to comment.