Skip to content

Commit a41a063

Browse files
Merge pull request #163 from rune-js/feature/windows
Better windows support and add an anvil to Lumbridge
2 parents c8c999e + 4072111 commit a41a063

File tree

3 files changed

+52
-19
lines changed

3 files changed

+52
-19
lines changed

data/config/scenery-spawns.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,3 +598,9 @@
598598
level: 0
599599
type: 10
600600
orientation: 0
601+
- objectId: 4306 # anvil in lumbridge
602+
x: 3227
603+
'y': 3252
604+
level: 0
605+
type: 10
606+
orientation: 0

package-lock.json

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

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"main": "src/game-server.ts",
66
"scripts": {
77
"server": "npm start",
8-
"start": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js\"",
8+
"start": "rimraf ./dist && mkdirp ./dist && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js\"",
99
"lint": "tslint --project tsconfig.json",
10-
"fake-players": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers\"",
11-
"fake-players-tick": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers -tickTime\"",
10+
"fake-players": "rimraf ./dist && mkdirp ./dist && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers\"",
11+
"fake-players-tick": "rimraf ./dist && mkdirp ./dist && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers -tickTime\"",
1212
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
1313
"watch-plugins": "nodemon --watch src/plugins/ --exec \"npm run build\" -e ts"
1414
},
@@ -55,7 +55,9 @@
5555
"@types/yargs": "^13.0.4",
5656
"chokidar": "^3.3.1",
5757
"concurrently": "^5.1.0",
58+
"mkdirp": "^1.0.4",
5859
"nodemon": "^2.0.2",
60+
"rimraf": "^3.0.2",
5961
"tsconfig-paths": "^3.9.0",
6062
"tslint": "^6.1.0"
6163
}

0 commit comments

Comments
 (0)