diff --git a/README.md b/README.md
index bb77226..4c8bf93 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ The AuctionHouseBot module adds the following in-game commands (for GMs only):
| Command | Description |
|----------|--------------|
| `.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.
Player auctions are unaffected. Bids on affected items are returned to players.
Use with caution! |
| `.ahbot update` | Forces the bot to refresh or repopulate auction listings immediately.
Note: If you have multiple minutes configured between Buy/Sell cycles, you may have to run this additional times before you see results. |
diff --git a/conf/mod_ahbot.conf.dist b/conf/mod_ahbot.conf.dist
index 3376b4c..be9fd08 100644
--- a/conf/mod_ahbot.conf.dist
+++ b/conf/mod_ahbot.conf.dist
@@ -5,7 +5,7 @@
#
# Available GM commands:
# .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
###################################################################################################
diff --git a/src/AuctionHouseBotScript.cpp b/src/AuctionHouseBotScript.cpp
index 139fae5..02297f7 100644
--- a/src/AuctionHouseBotScript.cpp
+++ b/src/AuctionHouseBotScript.cpp
@@ -172,7 +172,7 @@ public:
{
handler->PSendSysMessage("AuctionHouseBot commands:");
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");
return true;
}