Skip to content

Commit

Permalink
Restore IsMultiplayer
Browse files Browse the repository at this point in the history
  • Loading branch information
Korshun committed Aug 5, 2016
1 parent 383f027 commit 0f24a97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ A patched version of ACC for use with ACSUtils

Changes compared to vanilla ACC:
* Function count limit increased from 256 to 8192.
* IsMultiplayer() function restored.

This is not a fork of rheit/acc because that one has an outdated version.
2 changes: 1 addition & 1 deletion pcode.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ typedef enum
PCD_PLAYERGOLDSKULL,
PCD_PLAYERBLACKCARD,
PCD_PLAYERSILVERCARD,
PCD_PLAYERONTEAM,
PCD_ISMULTIPLAYER,
PCD_PLAYERTEAM,
PCD_PLAYERHEALTH,
PCD_PLAYERARMORPOINTS,
Expand Down
2 changes: 1 addition & 1 deletion symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
{ "ismultiplayer", PCD_NOP, PCD_ISMULTIPLAYER, 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 },
Expand Down

0 comments on commit 0f24a97

Please sign in to comment.