enefel 1.0.167 → 1.0.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +8 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -203,6 +203,8 @@ const PLAYER_HISTORY_TYPE = {
|
|
|
203
203
|
REMOVE_FROM_TEAM: "rt",
|
|
204
204
|
SKILL: "s",
|
|
205
205
|
RAZ: "raz",
|
|
206
|
+
RETIRED: "ret",
|
|
207
|
+
RETIRED_END: "retend",
|
|
206
208
|
};
|
|
207
209
|
|
|
208
210
|
const PLAYER_HISTORY_INFO = {
|
|
@@ -922,7 +924,12 @@ const getInactiveDays = (isDev = false) => {
|
|
|
922
924
|
};
|
|
923
925
|
|
|
924
926
|
const getMaxPlayers = (isDev = false) => {
|
|
925
|
-
|
|
927
|
+
let maxPlayers = MAX_PLAYER_USER;
|
|
928
|
+
if (isDev) {
|
|
929
|
+
maxPlayers = 10000;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
return maxPlayers;
|
|
926
933
|
};
|
|
927
934
|
|
|
928
935
|
module.exports = {
|