Poodletooth-iLand/toontown/ai/ReportGlobals.py
2015-06-21 11:29:47 +03:00

10 lines
No EOL
264 B
Python
Executable file

categories = ['foul-language', 'greening', 'rude-behavior', 'bad-name', 'hacking']
def isValidCategory(value):
return value < len(categories)
def isValidCategoryName(value):
return value in categories
def getCategory(value):
return categories[value]