mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
fixing my mistakes (aka TheNoim is smarter than me)
This commit is contained in:
parent
59f053433c
commit
a38765d02d
@ -15,7 +15,7 @@ services:
|
||||
networks:
|
||||
- darkflame
|
||||
ports:
|
||||
- 3306:3306
|
||||
- 3306:3306 # (optional) ports only exposed so that DB management tools can connect
|
||||
|
||||
darkflame:
|
||||
container_name: DarkFlameServer
|
||||
|
@ -66,9 +66,16 @@ function symlink_client_files() {
|
||||
ln -s /client/client/res/macros/ /app/res/macros
|
||||
ln -s /client/client/res/BrickModels/ /app/res/BrickModels
|
||||
ln -s /client/client/res/chatplus_en_us.txt /app/res/chatplus_en_us.txt
|
||||
ln -s /client/client/res/maps/ /app/res/maps
|
||||
ln -s /client/client/res/names/ /app/res/names
|
||||
ln -s /client/client/locale/locale.xml /app/locale/locale.xml
|
||||
# need to iterate over entries in maps due to maps already being a directory with navmeshes/ in it
|
||||
(
|
||||
cd /client/client/res/maps
|
||||
readarray -d '' entries < <(printf '%s\0' * | sort -zV)
|
||||
for entry in "${entries[@]}"; do
|
||||
ln -s /client/client/res/maps/$entry /app/res/maps/
|
||||
done
|
||||
)
|
||||
}
|
||||
|
||||
function fdb_to_sqlite() {
|
||||
|
Loading…
Reference in New Issue
Block a user