mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-14 16:41:01 +00:00
- Renamed PlayerOnTeam with IsNetworkGame.
This commit is contained in:
parent
5a55620a1a
commit
49f91e214e
3 changed files with 3 additions and 3 deletions
2
pcode.c
2
pcode.c
|
@ -231,7 +231,7 @@ static char *PCDNames[PCODE_COMMAND_COUNT] =
|
|||
"PCD_PLAYERGOLDSKULL",
|
||||
"PCD_PLAYERBLACKCARD",
|
||||
"PCD_PLAYERSILVERCARD",
|
||||
"PCD_PLAYERONTEAM",
|
||||
"PCD_ISNETWORKGAME",
|
||||
"PCD_PLAYERTEAM",
|
||||
"PCD_PLAYERHEALTH",
|
||||
"PCD_PLAYERARMORPOINTS",
|
||||
|
|
2
pcode.h
2
pcode.h
|
@ -176,7 +176,7 @@ typedef enum
|
|||
PCD_PLAYERGOLDSKULL,
|
||||
PCD_PLAYERBLACKCARD,
|
||||
PCD_PLAYERSILVERCARD,
|
||||
PCD_PLAYERONTEAM,
|
||||
PCD_ISNETWORKGAME,
|
||||
PCD_PLAYERTEAM,
|
||||
PCD_PLAYERHEALTH,
|
||||
PCD_PLAYERARMORPOINTS,
|
||||
|
|
2
symbol.c
2
symbol.c
|
@ -90,7 +90,7 @@ static internFuncDef_t InternalFunctions[] =
|
|||
{ "playerbluecard", PCD_NOP, PCD_PLAYERBLUECARD, 0, 0, 0, YES, NO },
|
||||
{ "playerredcard", PCD_NOP, PCD_PLAYERREDCARD, 0, 0, 0, YES, NO },
|
||||
{ "playeryellowcard", PCD_NOP, PCD_PLAYERYELLOWCARD, 0, 0, 0, YES, NO },
|
||||
{ "playeronteam", PCD_NOP, PCD_PLAYERONTEAM, 0, 0, 0, YES, NO },
|
||||
{ "isnetworkgame", PCD_NOP, PCD_ISNETWORKGAME, 0, 0, 0, YES, NO },
|
||||
{ "playerteam", PCD_NOP, PCD_PLAYERTEAM, 0, 0, 0, YES, NO },
|
||||
{ "playerfrags", PCD_NOP, PCD_PLAYERFRAGS, 0, 0, 0, YES, NO },
|
||||
{ "playerhealth", PCD_NOP, PCD_PLAYERHEALTH, 0, 0, 0, YES, NO },
|
||||
|
|
Loading…
Reference in a new issue