Skip to content

Commit

Permalink
Used defined variable names for constant exports (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemongrass3110 committed Aug 25, 2016
1 parent f8a8c9f commit 5cae674
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/map/script_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -457,9 +457,9 @@
script_set_constant("CharRename",SP_CHARRENAME,true);
script_set_constant("Font",SP_CHARFONT,true);
script_set_constant("BankVault",SP_BANK_VAULT,true);
script_set_constant("RouletteBronze",SP_ROULETTE_BRONZE,true);
script_set_constant("RouletteSilver",SP_ROULETTE_SILVER,true);
script_set_constant("RouletteGold",SP_ROULETTE_GOLD,true);
script_set_constant(ROULETTE_BRONZE_VAR,SP_ROULETTE_BRONZE,true);
script_set_constant(ROULETTE_SILVER_VAR,SP_ROULETTE_SILVER,true);
script_set_constant(ROULETTE_GOLD_VAR,SP_ROULETTE_GOLD,true);

script_set_constant("bMaxHP",SP_MAXHP,false);
script_set_constant("bMaxSP",SP_MAXSP,false);
Expand Down

0 comments on commit 5cae674

Please sign in to comment.