File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments