From 9faa805da19b88a65cc2941f27ad2a469cab4aa9 Mon Sep 17 00:00:00 2001 From: aleos89 Date: Sat, 17 May 2014 15:03:54 -0400 Subject: [PATCH] Follow up to 577079b to fix compile errors. --- src/map/atcommand.c | 2 +- src/map/script.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/atcommand.c b/src/map/atcommand.c index d8d112dcf0..7aaccc020a 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8316,7 +8316,7 @@ ACMD_FUNC(auction) nullpo_ret(sd); if (!battle_config.feature_auction) { - clif_colormes(sd, color_table[COLOR_RED], msg_txt(517)); + clif_colormes(sd, color_table[COLOR_RED], msg_txt(sd, 517)); return 0; } diff --git a/src/map/script.c b/src/map/script.c index 492bb103a1..59f2d2cf47 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -16427,7 +16427,7 @@ BUILDIN_FUNC(openauction) return 0; if( !battle_config.feature_auction ) { - clif_colormes(sd, color_table[COLOR_RED], msg_txt(517)); + clif_colormes(sd, color_table[COLOR_RED], msg_txt(sd, 517)); return 0; }