We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8831dbb commit 182b605Copy full SHA for 182b605
app/services/gamebridge/payloads/BanPayload.ts
@@ -24,7 +24,9 @@ export default class BanPayload extends Payload {
24
const notificationsChannel = guild.channels.cache.get(bridge.config.banUnbanChannelId);
25
if (!notificationsChannel) return;
26
27
- const pastBans = await (await bridge.container.getService("Bans")).getBan(player.steamId);
+ const pastBans = await (
28
+ await bridge.container.getService("Bans")
29
+ ).getBan(player.steamId, true);
30
31
const steam = await bridge.container.getService("Steam");
32
let steamId64 = "";
0 commit comments