diff --git a/src/Events/Twitch/RaidEvent.php b/src/Events/Twitch/RaidEvent.php index 4a21a73..badd530 100644 --- a/src/Events/Twitch/RaidEvent.php +++ b/src/Events/Twitch/RaidEvent.php @@ -8,13 +8,13 @@ class RaidEvent extends Event { public Channel $channel; - public string $raidedChannel; + public string $user; public int $viewers; - public function __construct(Channel $channel, string $raidedChannel, int $viewers) + public function __construct(Channel $channel, string $user, int $viewers) { $this->channel = $channel; - $this->raidedChannel = $raidedChannel; + $this->user = $user; $this->viewers = $viewers; } }