Browse Source

use game hashtag from config

master
Aaron Parecki 4 years ago
parent
commit
836e304d23
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/Listeners/TweetAcceptedListener.php

+ 2
- 2
app/Listeners/TweetAcceptedListener.php View File

@ -39,7 +39,7 @@ class TweetAcceptedListener implements ShouldQueue
$newMissionStatus = $tweet->mission->complete($tweet->team);
if($event->previousMissionStatus == false && $newMissionStatus == true) {
$text = 'Team '.$tweet->team->name.' completed mission '.$tweet->mission_id.'! '.$tweet->mission->hashtag.' #spy30';
$text = 'Team '.$tweet->team->name.' completed mission '.$tweet->mission_id.'! '.$tweet->mission->hashtag.' '.env('GAME_HASHTAG');
Log::info("Tweeting: $text");
$params = [
@ -63,7 +63,7 @@ class TweetAcceptedListener implements ShouldQueue
->where('m2_transit_center_id', $this_tc)
->count();
if($other_teams == 0) {
$text = 'Team '.$tweet->team->name.' is currently the only team to have visited '.$tweet->transit_center->name.'! #spy30';
$text = 'Team '.$tweet->team->name.' is currently the only team to have visited '.$tweet->transit_center->name.'! '.env('GAME_HASHTAG');
Log::info("Tweeting: $text");
$params = [
'attachment_url' => 'https://twitter.com/'.$tweet->player->twitter.'/status/'.$tweet->tweet_id,

Loading…
Cancel
Save