Updating sokme wording and putting the rogues on the /spawns list
All checks were successful
Build and push / changes (push) Successful in 7s
Build and push / Lint-Python (push) Successful in 2s
Build and push / Build-and-Push-Docker (push) Successful in 2m31s
Build and push / sync-argocd-app (push) Successful in 2s
Build and push / post-status-to-discord (push) Successful in 2s

This commit is contained in:
Luke Robles 2025-01-16 15:10:27 -08:00
parent 9b6600c82f
commit 2b35b320c9
2 changed files with 2 additions and 4 deletions

View File

@ -40,7 +40,7 @@ class Tarkov(commands.Cog):
known_spawns = json.load(f) known_spawns = json.load(f)
if spawns_from_api != known_spawns: if spawns_from_api != known_spawns:
embed.set_author(name="🎲 Boss spawn chances have updated 🎲") embed.set_author(name="🎲 Boss Spawn Rates Have Changed 🎲")
# Send both dicts to this method to see if any spawn rates have been updated # Send both dicts to this method to see if any spawn rates have been updated
changes_dict = tarkov.compare_boss_spawns(known_spawns, spawns_from_api) changes_dict = tarkov.compare_boss_spawns(known_spawns, spawns_from_api)
@ -130,7 +130,7 @@ class Tarkov(commands.Cog):
@tarkov.command( @tarkov.command(
guild_ids=core_utils.my_guilds, guild_ids=core_utils.my_guilds,
name="spawns", name="spawns",
description="Boss spawn chances per map", description="Boss Boss Spawn Rates",
) )
async def boss_spawns( async def boss_spawns(
self, self,

View File

@ -47,10 +47,8 @@ def get_tarkov_boss_info():
dont_care = [ dont_care = [
"assault", "assault",
"Infected",
"BEAR", "BEAR",
"USEC", "USEC",
"Rogue",
] ]
response = query_tarkov_api(query)["maps"] response = query_tarkov_api(query)["maps"]