Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions data/config/scenery-spawns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -598,3 +598,9 @@
level: 0
type: 10
orientation: 0
- objectId: 4306 # anvil in lumbridge
x: 3227
'y': 3252
level: 0
type: 10
orientation: 0
57 changes: 41 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"main": "src/game-server.ts",
"scripts": {
"server": "npm start",
"start": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js\"",
"start": "rimraf ./dist && mkdirp ./dist && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js\"",
"lint": "tslint --project tsconfig.json",
"fake-players": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers\"",
"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\"",
"fake-players": "rimraf ./dist && mkdirp ./dist && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers\"",
"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\"",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"watch-plugins": "nodemon --watch src/plugins/ --exec \"npm run build\" -e ts"
},
Expand Down Expand Up @@ -55,7 +55,9 @@
"@types/yargs": "^13.0.4",
"chokidar": "^3.3.1",
"concurrently": "^5.1.0",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.0"
}
Expand Down