File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/io/github/axolotlclient/modules/hud/gui/hud/simple Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,17 +125,17 @@ public boolean movable() {
125125 @ Override
126126 public String getValue () {
127127 if (client .options .sneakKey .isPressed ()) {
128- return I18n .translate ("axolotlclient. sneaking_pressed" );
128+ return I18n .translate ("sneaking_pressed" );
129129 }
130130 if (client .options .sprintKey .isPressed ()) {
131- return I18n .translate ("axolotlclient. sprinting_pressed" );
131+ return I18n .translate ("sprinting_pressed" );
132132 }
133133
134134 if (toggleSneak .get () && sneakToggled .get ()) {
135- return I18n .translate ("axolotlclient. sneaking_toggled" );
135+ return I18n .translate ("sneaking_toggled" );
136136 }
137137 if (toggleSprint .get () && sprintToggled .get ()) {
138- return I18n .translate ("axolotlclient. sprinting_toggled" );
138+ return I18n .translate ("sprinting_toggled" );
139139 }
140140 return getPlaceholder ();
141141 }
You can’t perform that action at this time.
0 commit comments