b762e4998e
* V3 * Add classes mode * Rework top rankings * Updatez 1) Fix issues with > 2 teams 2) Show game mode in match summary 3) Support > 2 teams in classic mode * Add nade fight mode * Updatez 1) More fair team allocator 2) Fix broken respawn delay if a match ends during respawn 3) Different map pools for different game modes * Updatez 1) Optimise the team allocator 2) Add soft restart and soft next map functions 3) Nail a player down after they die 4) Remove support immunity effect when a player dies 5) Allow to get stuff from lost teams' chests * Rework nade fight mode Co-authored-by: savilli <78875209+savilli@users.noreply.github.com>
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Update capturetheflag
|
|
git pull
|
|
|
|
# Update all submodules
|
|
git submodule update --init --recursive
|
|
|
|
# Run post-processing actions for maps
|
|
exec scripts/setup_maps.sh
|
|
|
|
# Queue restart
|
|
if [[ -d ../../worlds/ctf ]]; then
|
|
touch ../../worlds/ctf/queue_restart.txt
|
|
fi
|