This commit is contained in:
Lemongrass3110 2015-12-17 18:05:21 +01:00
parent ee0d256f7b
commit c75cc2a227
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ feature.atcommand_suggestions: off
// Auction (Note 1) // Auction (Note 1)
// Feature became unstable on clients 2012 onwards (exact date not known), // Feature became unstable on clients 2012 onwards (exact date not known),
// it has been fixed on clients 2013-05-15 onwards however. // it has been fixed on clients 2013-05-15 onwards however.
// Feature was removed again on clients 2014-11-12 and later.
feature.auction: on feature.auction: on
// Warp suggestions (Note 1) // Warp suggestions (Note 1)

View File

@ -8392,6 +8392,12 @@ void battle_adjust_conf()
ShowWarning("conf/battle/feature.conf:feature.auction change value to '2' to silence this warning and maintain it enabled\n"); ShowWarning("conf/battle/feature.conf:feature.auction change value to '2' to silence this warning and maintain it enabled\n");
battle_config.feature_auction = 0; battle_config.feature_auction = 0;
} }
#elif PACKETVER >= 20141112
if (battle_config.feature_auction) {
ShowWarning("conf/battle/feature.conf:feature.auction is enabled but it is not available for clients from 2014-11-12 on, disabling...\n");
ShowWarning("conf/battle/feature.conf:feature.auction change value to '2' to silence this warning and maintain it enabled\n");
battle_config.feature_auction = 0;
}
#endif #endif
#if PACKETVER < 20130724 #if PACKETVER < 20130724