diff --git a/src/main.py b/src/main.py index 23dbae0..573dad5 100644 --- a/src/main.py +++ b/src/main.py @@ -97,7 +97,9 @@ async def process_onsale_queue(): f"Retrying onsale for asset {item['asset_id']} (Attempt {item['retry_count'] + 1})" ) try: - collectible_item_id = item["collectible_item_id"] or await roblox_onsale.get_collectible_item_id(item["asset_id"]) + collectible_item_id = item["collectible_item_id"] or await roblox_onsale.publish_collectible( + item["asset_id"], item["group_id"], item["name"], item["description"], price=5 + ) await roblox_onsale.onsale_asset(collectible_item_id) database.remove_from_onsale_queue(item["id"]) print(