Skip to content

Commit eb1e919

Browse files
committed
Don't say anything if a non-participant removes a 👍
1 parent 2fe78a8 commit eb1e919

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

PS4Bot.py

+4
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,10 @@ def remove_user_from_game(self, user, game, subtle_message = False):
278278
if game.remove_player(user):
279279
banter = ":candle: {}".format(format_user(user))
280280
else:
281+
if subtle_message:
282+
# don't say anything - they're silently removing their failed join-attmept-emoji
283+
return
284+
281285
banter = ":warning: you're not in the {} game {} (\"{}\")".format(
282286
when_str(game.when),
283287
format_user(user),

0 commit comments

Comments
 (0)