Skip to content

Commit

Permalink
Fix bad screenshot timing in AutoDA.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mysticial committed Jan 20, 2024
1 parent c2b9e23 commit 88ac422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void Handler::create_unified_commands(commandhandler& handler) {
embed.add_field("Guilds", std::to_string(Utility::user_counts.size()));
embed.add_field("Users", std::to_string(counts));
embed.add_field("Uptime", handler.owner->uptime().to_string());
embed.add_field("Powered By", PROGRAM_NAME + " " + PROGRAM_VERSION + "([GitHub](" + PROJECT_GITHUB_URL + "/About)/[Discord](" + DISCORD_LINK_URL + "))");
embed.add_field("Powered By", PROGRAM_NAME + " " + PROGRAM_VERSION + " ([GitHub](" + PROJECT_GITHUB_URL + "/About)/[Discord](" + DISCORD_LINK_URL + "))");

message message;
message.add_embed(embed);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ bool start_raid_host_solo(
enter_digits(context, 8, code);
pbf_wait(context, 2 * TICKS_PER_SECOND);
pbf_press_button(context, BUTTON_A, 10, TICKS_PER_SECOND);
context.wait_for_all_requests();
}

send_raid_notification(
Expand Down

0 comments on commit 88ac422

Please sign in to comment.