* Enable sneaking.

* Fix #19.
This commit is contained in:
iProgramInCpp
2023-08-02 22:45:40 +03:00
parent b2edbd645a
commit a62ade1d99
2 changed files with 5 additions and 1 deletions

View File

@@ -84,7 +84,7 @@ void TextInputBox::keyPressed(Minecraft* minecraft, int key)
chr = bShiftPressed ? '<' : ',';
break;
case AKEYCODE_PERIOD:
chr = bShiftPressed ? '>' : ':';
chr = bShiftPressed ? '>' : '.';
break;
case AKEYCODE_PLUS:
chr = bShiftPressed ? '+' : '=';