banned/gamemodes.py.example
Vgr E. Barry c37631e90c Update handling of game modes
This change moves the game modes into their own `src/gamemodes.py`, and
also allows setting game modes via `gamemodes.py`.
2015-09-09 09:57:41 -04:00

17 lines
345 B
Plaintext

# To add new game modes, rename this file to 'gamemodes.py' then add them in
# Basic frame for the game modes in src/gamemodes.py
# *** DO NOT TOUCH ANY OF THE CODE BETWEEN THE LINES 4 AND 16 ***
import src.settings as var
from src.gamemodes import (
GameMode,
game_mode,
reset_roles,
)
# Add custom game modes from this point