mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Small cleanup
This commit is contained in:
parent
23255a04b3
commit
cd12a62252
|
@ -12,6 +12,7 @@ CharacterFlags = ["SOLO", "JETPACK", "NO_COLLISION", "ENDLESS_HOOK", "ENDLESS_JU
|
||||||
Emoticons = ["OOP", "EXCLAMATION", "HEARTS", "DROP", "DOTDOT", "MUSIC", "SORRY", "GHOST", "SUSHI", "SPLATTEE", "DEVILTEE", "ZOMG", "ZZZ", "WTF", "EYES", "QUESTION"]
|
Emoticons = ["OOP", "EXCLAMATION", "HEARTS", "DROP", "DOTDOT", "MUSIC", "SORRY", "GHOST", "SUSHI", "SPLATTEE", "DEVILTEE", "ZOMG", "ZZZ", "WTF", "EYES", "QUESTION"]
|
||||||
|
|
||||||
Powerups = ["HEALTH", "ARMOR", "WEAPON", "NINJA"]
|
Powerups = ["HEALTH", "ARMOR", "WEAPON", "NINJA"]
|
||||||
|
Authed = ["NO", "HELPER", "MOD", "ADMIN"]
|
||||||
|
|
||||||
RawHeader = '''
|
RawHeader = '''
|
||||||
|
|
||||||
|
@ -36,14 +37,6 @@ enum
|
||||||
SPEC_FREEVIEW=-1,
|
SPEC_FREEVIEW=-1,
|
||||||
SPEC_FOLLOW=-2,
|
SPEC_FOLLOW=-2,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
AUTHED_NO=0,
|
|
||||||
AUTHED_HELPER,
|
|
||||||
AUTHED_MOD,
|
|
||||||
AUTHED_ADMIN,
|
|
||||||
};
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RawSource = '''
|
RawSource = '''
|
||||||
|
@ -54,7 +47,8 @@ RawSource = '''
|
||||||
Enums = [
|
Enums = [
|
||||||
Enum("EMOTE", Emotes),
|
Enum("EMOTE", Emotes),
|
||||||
Enum("POWERUP", Powerups),
|
Enum("POWERUP", Powerups),
|
||||||
Enum("EMOTICON", Emoticons)
|
Enum("EMOTICON", Emoticons),
|
||||||
|
Enum("AUTHED", Authed),
|
||||||
]
|
]
|
||||||
|
|
||||||
Flags = [
|
Flags = [
|
||||||
|
|
Loading…
Reference in a new issue