mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-09-09 02:56:52 -05:00
Update package.json
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "POGOServer",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -17,8 +17,6 @@
|
||||
"babel-cli": "^6.11.4",
|
||||
"babel-preset-es2015": "^6.13.1",
|
||||
"babel-preset-stage-0": "^6.5.0",
|
||||
"body-parser": "^1.15.2",
|
||||
"concat-stream": "^1.5.1",
|
||||
"nodemon": "^1.7.1",
|
||||
"protobufjs": "^5.0.1",
|
||||
"mongodb": "^2.2.5",
|
||||
|
||||
@@ -67,8 +67,8 @@ export function createUser(obj) {
|
||||
email: obj.email,
|
||||
position: obj.position,
|
||||
exp: obj.exp,
|
||||
stardust: 1337,
|
||||
pokecoins: 1338,
|
||||
stardust: obj.stardust,
|
||||
pokecoins: obj.pokecoins,
|
||||
avatar: obj.avatar,
|
||||
contact_settings: obj.contact_settings
|
||||
};
|
||||
@@ -90,8 +90,8 @@ export function updateUser(obj) {
|
||||
email: obj.email,
|
||||
position: obj.position,
|
||||
exp: obj.exp,
|
||||
stardust: 1337,
|
||||
pokecoins: 1338,
|
||||
stardust: obj.stardust,
|
||||
pokecoins: obj.pokecoins,
|
||||
avatar: obj.avatar,
|
||||
contact_settings: obj.contact_settings
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user