From 5cae674b056aec4a36a1e04ec50e36dfde9e540e Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 25 Aug 2016 15:59:18 +0200 Subject: [PATCH] Used defined variable names for constant exports (#1417) --- src/map/script_constants.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/map/script_constants.h b/src/map/script_constants.h index bcc16de74c..48989fcf2b 100644 --- a/src/map/script_constants.h +++ b/src/map/script_constants.h @@ -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);