Changing knight to the goons in the boss spawns dict
All checks were successful
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 2s
Build and push / Build-and-Push-Docker (push) Successful in 53s
Build and push / sync-argocd-app (push) Successful in 4s
Build and push / post-status-to-discord (push) Successful in 2s
All checks were successful
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 2s
Build and push / Build-and-Push-Docker (push) Successful in 53s
Build and push / sync-argocd-app (push) Successful in 4s
Build and push / post-status-to-discord (push) Successful in 2s
This commit is contained in:
parent
76ab9caa1e
commit
633a22e3fa
@ -128,7 +128,7 @@ class Tarkov(commands.Cog):
|
||||
@tarkov.command(
|
||||
guild_ids=core_utils.my_guilds,
|
||||
name="spawns",
|
||||
description="Boss Boss Spawn Rates",
|
||||
description="Boss Spawn Rates",
|
||||
)
|
||||
async def boss_spawns(
|
||||
self,
|
||||
|
@ -51,6 +51,10 @@ def get_tarkov_boss_info():
|
||||
"USEC",
|
||||
]
|
||||
response = query_tarkov_api(query)["maps"]
|
||||
for map_data in response:
|
||||
for boss in map_data["bosses"]:
|
||||
if boss["boss"]["name"] == "Knight":
|
||||
boss["boss"]["name"] = "The Goons"
|
||||
|
||||
# Wasteful, but make a new dict to hold the info we care about
|
||||
levels = {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user