mirror of
https://github.com/azerothcore/mod-transmog
synced 2025-11-29 22:48:30 +08:00
style: fix spacing
This commit is contained in:
@@ -26,26 +26,26 @@ using namespace Acore::ChatCommands;
|
|||||||
class transmog_commandscript : public CommandScript
|
class transmog_commandscript : public CommandScript
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
transmog_commandscript() : CommandScript("transmog_commandscript") {}
|
transmog_commandscript() : CommandScript("transmog_commandscript") { }
|
||||||
|
|
||||||
ChatCommandTable GetCommands() const override
|
ChatCommandTable GetCommands() const override
|
||||||
{
|
{
|
||||||
static ChatCommandTable addCollectionTable =
|
static ChatCommandTable addCollectionTable =
|
||||||
{
|
{
|
||||||
{"set", HandleAddTransmogItemSet, SEC_MODERATOR, Console::Yes},
|
{ "set", HandleAddTransmogItemSet, SEC_MODERATOR, Console::Yes },
|
||||||
{"", HandleAddTransmogItem, SEC_MODERATOR, Console::Yes},
|
{ "", HandleAddTransmogItem, SEC_MODERATOR, Console::Yes },
|
||||||
};
|
};
|
||||||
|
|
||||||
static ChatCommandTable transmogTable =
|
static ChatCommandTable transmogTable =
|
||||||
{
|
{
|
||||||
{"add", addCollectionTable},
|
{ "add", addCollectionTable },
|
||||||
{"", HandleDisableTransMogVisual, SEC_PLAYER, Console::No},
|
{ "", HandleDisableTransMogVisual, SEC_PLAYER, Console::No },
|
||||||
};
|
};
|
||||||
|
|
||||||
static ChatCommandTable commandTable =
|
static ChatCommandTable commandTable =
|
||||||
{
|
{
|
||||||
{"transmog", transmogTable},
|
{ "transmog", transmogTable },
|
||||||
};
|
};
|
||||||
|
|
||||||
return commandTable;
|
return commandTable;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user