Skip to content

Commit

Permalink
remove verbose command (#3897)
Browse files Browse the repository at this point in the history
The console command "verbose" is no longer supported. Use "conf verbose #" instead.
  • Loading branch information
ya4ept authored Dec 8, 2024
1 parent 8a64cee commit 99ef6b0
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/Commands.pm
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,6 @@ sub initHandlers {
[T("<vender #> <vender_item #> [<amount>]"), T("buy items from vender shop")],
["end", T("leave current vender shop")]
], \&cmdVender],
['verbose', T("Toggle verbose on/off."), \&cmdVerbose],
['version', T("Display the version of openkore."), \&cmdVersion],
['vl', T("List nearby vending shops."), \&cmdVenderList],
['vs', T("Display the status of your vending shop."), \&cmdShopInfoSelf],
Expand Down Expand Up @@ -6571,16 +6570,7 @@ sub cmdBuyer {
}

$messageSender->sendBuyBulkBuyer($buyerID, [{ID => $c_item->{ID}, itemID => $c_item->{nameID}, amount => $amount}], $buyingStoreID);
}
}


sub cmdVerbose {
if ($config{'verbose'}) {
configModify("verbose", 0);
} else {
configModify("verbose", 1);
}
}

sub cmdVersion {
Expand Down

0 comments on commit 99ef6b0

Please sign in to comment.