Skip to content

Commit 6e49f06

Browse files
committed
tut keys fixed
1 parent f535187 commit 6e49f06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

game/ui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3484,7 +3484,7 @@ function setupTutorialPages(pageHolder) {
34843484
keyToVisualKey(Controls_Left_key);
34853485
keyToVisualKey(Controls_Down_key);
34863486
keyToVisualKey(Controls_Right_key);
3487-
3487+
console.log(Controls_Up_key, Controls_Left_key)
34883488
addControlStep(page2, "" + Controls_Up_key + Controls_Left_key + Controls_Down_key + Controls_Right_key, "Move around");
34893489
addControlStep(page2, "Left/Right Click", "Use item");
34903490
addControlStep(page2, Controls_Interact_key, "Interact");
@@ -3519,7 +3519,7 @@ function addTutorialStep(parent, imgPath, text) {
35193519
}
35203520

35213521
function addControlStep(parent, control, description) {
3522-
keyToVisualKey(control);
3522+
let key =keyToVisualKey(control);
35233523
let line = createP(key + " - " + description).parent(parent);
35243524
applyStyle(line, {
35253525
marginBottom: "5px",

0 commit comments

Comments
 (0)