Skip to content

Commit

Permalink
LL: Actually fix Survival and Boss bash not having silver weapons
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed Jun 9, 2024
1 parent 9391af3 commit a044a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/loonyland/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void InitPlayer(byte initWhat,byte world,byte level)
player.var[VAR_POTION]=1;
player.var[VAR_QUESTASSIGN+QUEST_SILVER]=1;
player.var[VAR_QUESTDONE+QUEST_SILVER]=1;
player.var[VAR_SILVER] = 1;
player.var[VAR_SILVERSLING] = 1;
player.maxMoney=200;
}
else if(player.worldNum==WORLD_SLINGSHOT)
Expand All @@ -192,7 +192,7 @@ void InitPlayer(byte initWhat,byte world,byte level)
{
player.var[VAR_QUESTASSIGN+QUEST_SILVER]=1;
player.var[VAR_QUESTDONE+QUEST_SILVER]=1;
player.var[VAR_SILVER] = 1;
player.var[VAR_SILVERSLING] = 1;
player.var[VAR_POTION]=1;
player.var[VAR_TORCH]=1;
for(i=0;i<7;i++)
Expand Down

0 comments on commit a044a89

Please sign in to comment.