find console file through zomboid folder
All checks were successful
Build and Push Docker Image / build (push) Successful in 13s

This commit is contained in:
Corban-Lee Jones 2024-12-06 18:49:08 +00:00
parent 8344bfa3b5
commit 19ec17a69a

View File

@ -5,16 +5,16 @@ Reads and handles updates in the server console file.
import re
import logging
import asyncio
from os import getenv
from pathlib import Path
from dataclasses import dataclass
import httpx
import aiofiles
from rcon.source import rcon
from discord import Embed, Colour
from discord.ext import commands, tasks
CONSOLE_FILE_PATH = Path(__file__).parent.parent / "data" / "server-console.txt"
ZOMBOID_FOLDER_PATH = getenv("SPIFFO__ZOMBOID_FOLDER_PATH")
CONSOLE_FILE_PATH = ZOMBOID_FOLDER_PATH / "server-console.txt"
log = logging.getLogger(__name__)