mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
11 lines
352 B
Python
Executable file
11 lines
352 B
Python
Executable file
from otp.chat.WhiteList import WhiteList
|
|
from toontown.toonbase import TTLocalizer
|
|
from toontown.chat import WhiteListData
|
|
|
|
class TTWhiteList(WhiteList):
|
|
notify = directNotify.newCategory('TTWhiteList')
|
|
|
|
def __init__(self):
|
|
WhiteList.__init__(self, WhiteListData.WHITELIST)
|
|
|
|
self.defaultWord = TTLocalizer.ChatGarblerDefault[0]
|