Skip to content

Commit

Permalink
Update ToolsThread.js
Browse files Browse the repository at this point in the history
- Log the `realm going down in x minutes` gameevent
  • Loading branch information
theBGuy committed Jan 15, 2025
1 parent 2ec0e4b commit 952a8c7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions d2bs/kolbot/threads/ToolsThread.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,12 @@ function main () {
}
}

break;
case 0x0f: // "Realm going down in %Param1 minutes."
{
let realmDownStr = getLocaleString(sdk.locale.text.RealmGoingDownInXMinutes).replace("%d", param1);
D2Bot.printToConsole(realmDownStr, sdk.colors.D2Bot.DarkGold);
}
break;
}
};
Expand Down

0 comments on commit 952a8c7

Please sign in to comment.