Skip to content

Commit

Permalink
Update gamemodes/terrortown/entities/entities/ttt_game_text.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Histalek authored Oct 17, 2023
1 parent 4e635cd commit aeb51a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamemodes/terrortown/entities/entities/ttt_game_text.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function ENT:AcceptInput(name, activator)
RECEIVE_INNOCENT = GetRoleChatFilter(TEAM_INNOCENT)
}

Check warning on line 67 in gamemodes/terrortown/entities/entities/ttt_game_text.lua

View workflow job for this annotation

GitHub Actions / lint

"Trailing whitespace"

Trailing whitespace
recv = (self.teamReceiver) ? GetTeamChatFilter(self.teamReceiver) : receiver_tbl[self.Receiver]
recv = (self.teamReceiver) and GetTeamChatFilter(self.teamReceiver) or receiver_tbl[self.Receiver]

Check warning on line 68 in gamemodes/terrortown/entities/entities/ttt_game_text.lua

View workflow job for this annotation

GitHub Actions / lint

"Unnecessary parentheses"

Unnecessary parentheses
CustomMsg(recv, self.Message, self.Color)

Check warning on line 70 in gamemodes/terrortown/entities/entities/ttt_game_text.lua

View workflow job for this annotation

GitHub Actions / lint

"Trailing whitespace"

Trailing whitespace
recv = nil
Expand Down

0 comments on commit aeb51a0

Please sign in to comment.