darwin: Remove the direct path to python3.9

This allows people to use python3.9 in other places, including a virtual environment inside of the repo
This commit is contained in:
DarthNihilus1 2023-07-24 15:40:44 -04:00
parent 464c2d45f6
commit 2829542177
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ MESSAGE_DIRECTOR_IP="127.0.0.1:7199"
EVENT_LOGGER_IP="127.0.0.1:7197"
DISTRICT_NAME="Toon Valley"
/usr/local/bin/python3.9 -m toontown.ai.AIStart --base-channel ${BASE_CHANNEL} \
python3.9 -m toontown.ai.AIStart --base-channel ${BASE_CHANNEL} \
--max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \
--messagedirector-ip ${MESSAGE_DIRECTOR_IP} \
--eventlogger-ip ${EVENT_LOGGER_IP} --district-name "$DISTRICT_NAME"

View File

@ -3,4 +3,4 @@ cd ..
export LOGIN_TOKEN=dev
/usr/local/bin/python3.9 -m toontown.launcher.QuickStartLauncher
python3.9 -m toontown.launcher.QuickStartLauncher

View File

@ -7,7 +7,7 @@ MESSAGE_DIRECTOR_IP="127.0.0.1:7199"
EVENT_LOGGER_IP="127.0.0.1:7197"
BASE_CHANNEL=1000000
/usr/local/bin/python3.9 -m toontown.uberdog.UDStart --base-channel ${BASE_CHANNEL} \
python3.9 -m toontown.uberdog.UDStart --base-channel ${BASE_CHANNEL} \
--max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \
--messagedirector-ip ${MESSAGE_DIRECTOR_IP} \
--eventlogger-ip ${EVENT_LOGGER_IP}