Skip to content

Commit

Permalink
Added some extra beta testers
Browse files Browse the repository at this point in the history
  • Loading branch information
buu342 committed Jul 24, 2021
1 parent 2e90346 commit 4f6ccc6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ACS/DOOMWARE.acs
Original file line number Diff line number Diff line change
Expand Up @@ -3509,7 +3509,7 @@ function void Handle_Menu_Achievement(int achieve_data, int number, str name, st
Hats
===================================================================================================*/

#define BETATESTERSIZE 16
#define BETATESTERSIZE 17
str BetaTesterList[BETATESTERSIZE];
function bool IsBetaTester(int plynum) // Returns true/false if the player is a beta tester
{
Expand All @@ -3529,6 +3529,7 @@ function bool IsBetaTester(int plynum) // Returns true/false if the player is a
BetaTesterList[13] = "haispawner";
BetaTesterList[14] = "daddykrabs";
BetaTesterList[15] = "obspogon";
BetaTesterList[16] = "bridgeburner";

for (int i=0; i<BETATESTERSIZE; i++)
if (!StrIcmp(BetaTesterList[i], GetPlayerAccountName(i)))
Expand Down
4 changes: 2 additions & 2 deletions ACS/MAP30.acs
Original file line number Diff line number Diff line change
Expand Up @@ -2778,8 +2778,7 @@ function void Give_Achievement(int plynum, int achievement) // Gives the player
Hats
===================================================================================================*/


#define BETATESTERSIZE 16
#define BETATESTERSIZE 17
str BetaTesterList[BETATESTERSIZE];
function bool IsBetaTester(int plynum) // Returns true/false if the player is a beta tester
{
Expand All @@ -2799,6 +2798,7 @@ function bool IsBetaTester(int plynum) // Returns true/false if the player is a
BetaTesterList[13] = "haispawner";
BetaTesterList[14] = "daddykrabs";
BetaTesterList[15] = "obspogon";
BetaTesterList[16] = "bridgeburner";

for (int i=0; i<BETATESTERSIZE; i++)
if (!StrIcmp(BetaTesterList[i], GetPlayerAccountName(i)))
Expand Down
Binary file modified doomware_testbeta1_99.wad
Binary file not shown.

0 comments on commit 4f6ccc6

Please sign in to comment.