Skip to content

Commit

Permalink
Merge pull request #403 from czqoocavatsim/JoshuaBranch
Browse files Browse the repository at this point in the history
Update DiscordAccountCheck.php
  • Loading branch information
JoshuaMicallefYBSU authored Oct 25, 2024
2 parents 2ab7035 + 42abc16 commit e51080d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/Jobs/DiscordAccountCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@ public function handle()
foreach($discord_uids as $discord_uid){

// Skip the Bot (Gander)
if($discord_uid === 1133048493850771616){
if($discord_uid == 1133048493850771616){
continue;
}

// Skip the Bot (QFA100)
if($discord_uid === 1133048493850771616){
if($discord_uid == 1133048493850771616){
continue;
}

Expand All @@ -345,9 +345,9 @@ public function handle()
// Beginning
$update_content = "Full list of functions completed this week for Discord Users";

$update_content .= "\n\n **__Updated Users:__**";
$update_content2 .= "\n\n **__Updated Users:__**";
foreach($in_discord_name as $name){
$update_content .= "\n- ".$name;
$update_content2 .= "\n- ".$name;
}

$update_content .= "\n\n **__General Information:__**";
Expand All @@ -367,6 +367,7 @@ public function handle()


$discord->sendMessageWithEmbed(env('DISCORD_SERVER_LOGS'), 'DAILY: Discord User Update', $update_content);
$discord->sendMessageWithEmbed(env('DISCORD_SERVER_LOGS'), '', $update_content2);
}
}

Expand Down

0 comments on commit e51080d

Please sign in to comment.