region_restart_cancelled
Fires when the bot receives a region restart cancellation notification.
Bot.on("region_restart_cancelled", function(event) { ... });Reference
This event comes with the following event object:
Variable | Description |
|---|---|
name | The name of the event — in this case |
bot_uuid | The UUID of the bot which receives the notification |
message | The message of the region restart cancellation |
region_name | The name of the region |
Comments
Not available for self-hosted QubicBot app yet.
Example
console.log(`${process.name} started`);
Bot.on("region_restart_cancelled", (event) => {
console.log(`Region restart cancelled:`, event);
});