Skip to content

Commit e61f915

Browse files
committed
repl.it config
1 parent da91c21 commit e61f915

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.replit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language = "nodejs"
2+
run = "npm start"
3+
onBoot = "npm install;npm run build"

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"jssoup": "0.0.12",
2828
"lodash-webpack-plugin": "^0.11.6",
2929
"mineflayer": "^3.0.0",
30+
"node": "^14.15.2",
3031
"open": "^7.4.2",
3132
"popper.js": "^1.16.1",
3233
"prismarine-block": "^1.7.3",

src/client/scripts/FirstPersonControls.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ var FirstPersonControls = class FirstPersonControls {
7272
}
7373
//Klawisz T lub /
7474
if (
75-
(z.code === "KeyT" || z.code === "Backslash") &&
75+
(z.code === "KeyT" || z.code === "Slash") &&
7676
_this.gameState === "gameLock"
7777
) {
78-
if (z.code === "Backslash") {
78+
if (z.code === "Slash") {
7979
$(".com_i").val("/");
8080
}
8181
_this.setState("chat");

0 commit comments

Comments
 (0)