forked from Hri7566/mpp-server-dev2
nothing happened
This commit is contained in:
parent
7f3decef88
commit
477e8bda5c
|
@ -1,5 +1,5 @@
|
|||
module.exports = Object.seal({
|
||||
port: 8443,
|
||||
port: 8080,
|
||||
motd: "big th0nk",
|
||||
_id_PrivateKey: process.env.SALT,
|
||||
defaultUsername: "Anonymous",
|
||||
|
@ -10,7 +10,7 @@ module.exports = Object.seal({
|
|||
// defaultLobbyColor2: "#801014",
|
||||
defaultLobbyColor2: "#801014",
|
||||
adminpass: process.env.ADMINPASS,
|
||||
ssl: true,
|
||||
ssl: false,
|
||||
defaultRoomSettings: {
|
||||
color: "#000000",
|
||||
crownsolo: false,
|
||||
|
|
|
@ -190,7 +190,7 @@ module.exports = (cl) => {
|
|||
if(!cl.quotas.userset.attempt()) return;
|
||||
cl.user.name = msg.set.name;
|
||||
let user = new User(cl);
|
||||
Database.getUserData().then((usr) => {
|
||||
Database.getUserData(cl, cl.server).then((usr) => {
|
||||
let dbentry = user.userdb.get(cl.user._id);
|
||||
if (!dbentry) return;
|
||||
dbentry.name = msg.set.name;
|
||||
|
|
|
@ -129,7 +129,9 @@ class Room extends EventEmitter {
|
|||
}
|
||||
|
||||
this.connections.forEach((usr) => {
|
||||
this.server.connections.get(usr.connectionid).sendArray([this.fetchData(usr, cl)])
|
||||
let u = this.fetchData(usr, cl);
|
||||
u.ip = undefined;
|
||||
this.server.connections.get(usr.connectionid).sendArray([u])
|
||||
});
|
||||
|
||||
this.server.updateRoom(this.fetchData());
|
||||
|
|
Loading…
Reference in New Issue