Skip to content

Commit 6216778

Browse files
committed
Larger factor
1 parent dc85b98 commit 6216778

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/service/lootDegradation.ts

Lines changed: 3 additions & 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.1);
96+
const targetWasteCount = Math.ceil(allWaste.length / 1.2);
9797
logger.info({ targetWasteCount }, "targetWasteCount");
9898

9999
if (targetWasteCount >= allWaste.length) {
@@ -147,6 +147,8 @@ export async function runHalfLife(context: BotContext) {
147147
.toArray()
148148
.map(([user, count]) => `${count}x von ${userMention(user)}`);
149149

150+
logger.info({ decayStats }, "decayStats");
151+
150152
await context.textChannels.hauptchat.send({
151153
embeds: [
152154
{

0 commit comments

Comments
 (0)