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; }