Skip to content

Commit 3b4feef

Browse files
committed
Increase number of decays
1 parent 1f63cc7 commit 3b4feef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/service/lootDegradation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export async function runHalfLife(context: BotContext) {
9393
// See: https://github.com/NullDev/CSZ-Bot/issues/470
9494
// We don't do /2 straigt away, so we can roll this out more slowly initially. We can increase this to 2 once we got this number down in general
9595
// Also, consider aligning this with the drop rate of radioactive waste, so we have that balanced
96-
const targetWasteCount = Math.ceil(allWaste.length / 1.2);
96+
const targetWasteCount = Math.ceil(allWaste.length / 1.4);
9797
logger.info({ targetWasteCount }, "targetWasteCount");
9898

9999
if (targetWasteCount >= allWaste.length) {

0 commit comments

Comments
 (0)