updated .ahbot empty documentation

This commit is contained in:
zeb
2025-10-04 23:52:58 -04:00
parent a22f866e49
commit 499b0702d3
3 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ The AuctionHouseBot module adds the following in-game commands (for GMs only):
| Command | Description | | Command | Description |
|----------|--------------| |----------|--------------|
| `.ahbot reload` | Reloads the AuctionHouseBot configuration file and updates settings. | | `.ahbot reload` | Reloads the AuctionHouseBot configuration file and updates settings. |
| `.ahbot empty` | Removes all auctions from all auction houses. Use with caution! | | `.ahbot empty` | Removes all AuctionHouseBot auctions from all auction houses.<br>Player auctions are unaffected. Bids on affected items are returned to players.<br>Use with caution! |
| `.ahbot update` | Forces the bot to refresh or repopulate auction listings immediately.<br>Note: If you have multiple minutes configured between Buy/Sell cycles, you may have to run this additional times before you see results. | | `.ahbot update` | Forces the bot to refresh or repopulate auction listings immediately.<br>Note: If you have multiple minutes configured between Buy/Sell cycles, you may have to run this additional times before you see results. |

View File

@@ -5,7 +5,7 @@
# #
# Available GM commands: # Available GM commands:
# .ahbot reload - Reloads AuctionHouseBot configuration # .ahbot reload - Reloads AuctionHouseBot configuration
# .ahbot empty - Clears all auctions from all auction houses # .ahbot empty - Clears all AuctionHouseBot auctions from all auction houses
# .ahbot update - Forces an immediate update cycle # .ahbot update - Forces an immediate update cycle
################################################################################################### ###################################################################################################

View File

@@ -172,7 +172,7 @@ public:
{ {
handler->PSendSysMessage("AuctionHouseBot commands:"); handler->PSendSysMessage("AuctionHouseBot commands:");
handler->PSendSysMessage(" .ahbot reload - Reloads configuration"); handler->PSendSysMessage(" .ahbot reload - Reloads configuration");
handler->PSendSysMessage(" .ahbot empty - Removes all auctions"); handler->PSendSysMessage(" .ahbot empty - Removes all AuctionHouseBot auctions");
handler->PSendSysMessage(" .ahbot update - Runs an update cycle"); handler->PSendSysMessage(" .ahbot update - Runs an update cycle");
return true; return true;
} }