fix(tools/attempt_protocols): add broke master to ignored protocols

This commit is contained in:
CosminPerRam 2025-01-01 18:47:15 +02:00
parent 5391daf6b7
commit d834c8091d

View file

@ -20,7 +20,7 @@ const gamedig = new GameDig(options)
const protocolList = []
Object.keys(protocols).forEach((key) => protocolList.push(key))
const ignoredProtocols = ['discord', 'beammpmaster', 'beammp', 'teamspeak2', 'teamspeak3', 'vintagestorymaster', 'renegadexmaster', 'hawakeningmaster']
const ignoredProtocols = ['discord', 'beammpmaster', 'beammp', 'teamspeak2', 'teamspeak3', 'vintagestorymaster', 'renegadexmaster', 'hawakeningmaster', 'brokeprotocolmaster']
const protocolListFiltered = protocolList.filter((protocol) => !ignoredProtocols.includes(protocol))
const run = async () => {