Fixed #796
This commit is contained in:
parent
ee0d256f7b
commit
c75cc2a227
@ -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)
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user