mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
Remove gamedir_client backwards compat shim.
You'll want to make sure to use egi_client instead. See egi_client/README.md for instructions.
This commit is contained in:
parent
1781a5acda
commit
654b32a0b3
1 changed files with 0 additions and 17 deletions
|
|
@ -1,17 +0,0 @@
|
|||
import warnings
|
||||
|
||||
from evennia.contrib.egi_client import EvenniaGameIndexService
|
||||
|
||||
|
||||
class EvenniaGameDirService(EvenniaGameIndexService):
|
||||
"""
|
||||
This is a compatibility shim to get us through the EGD to EGI rename.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
warnings.warn(
|
||||
"evennia.contrib.gamedir_client is deprecated and pending immediate "
|
||||
"removal. Please update your game's server_services_plugins.py to use "
|
||||
"evennia.contrib.egi_client.EvenniaGameIndexService instead.",
|
||||
DeprecationWarning)
|
||||
super(EvenniaGameDirService, self).__init__()
|
||||
Loading…
Add table
Add a link
Reference in a new issue