Skip to content

Commit

Permalink
RC5
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewgdewar committed Jan 25, 2025
1 parent 686e718 commit 86e81eb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified dist/DewardianDev-MOAR-2.7.0.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Spawning/buildPmcs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default function buildPmcs(
"pmcUSEC",
false,
config.pmcWaveDistribution,
10 + Math.round(10 * Math.random())
15 + Math.round(10 * Math.random())
);

const pmcBEAR = buildBotWaves(
Expand All @@ -112,7 +112,7 @@ export default function buildPmcs(
"pmcBEAR",
false,
config.pmcWaveDistribution,
10 + Math.round(10 * Math.random())
15 + Math.round(10 * Math.random())
);

const pmcs = [...pmcUSEC, ...pmcBEAR];
Expand Down
2 changes: 1 addition & 1 deletion src/Spawning/buildScavMarksmanWaves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default function buildScavMarksmanWaves(
WildSpawnType.ASSAULT,
false,
scavWaveDistribution,
11
12
);

// Add hotzones if exist
Expand Down
4 changes: 2 additions & 2 deletions src/Spawning/updateSpawnLocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ export default function updateSpawnLocations(locationList: ILocation[]) {
// console.log(playerSpawns.length);

const playerSpawn: ISpawnPointParam = getRandomInArray(playerSpawns); // playerSpawns[playerSpawns.length - 1]

playerSpawn.ColliderParams._props.Radius = 1
// console.log(map, playerSpawn.Position);

const spawnsToAdd = playerSpawns
.filter((point) => point.Id !== playerSpawn.Id)
.map((point, index) => ({
...point,
Categories: ["Bot"],
Infiltration: "",
// Infiltration: "",
Sides: ["Savage"],
CorePointId: 1,
}));
Expand Down

0 comments on commit 86e81eb

Please sign in to comment.