Skip to content

Commit

Permalink
[Commands] Remove #iteminfo Command. (#2565)
Browse files Browse the repository at this point in the history
- Command is unused and doesn't have most of the item data anyway, seems like a command for back when items weren't fully working.
  • Loading branch information
Kinglykrab authored Nov 22, 2022
1 parent 3424fe7 commit 3c361be
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 97 deletions.
2 changes: 0 additions & 2 deletions zone/command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ int command_init(void)
command_add("invul", "[On|Off]] - Turn player target's or your invulnerable flag on or off", AccountStatus::QuestTroupe, command_invul) ||
command_add("ipban", "[IP] - Ban IP", AccountStatus::GMMgmt, command_ipban) ||
command_add("iplookup", "[charname] - Look up IP address of charname", AccountStatus::GMMgmt, command_iplookup) ||
command_add("iteminfo", "Get information about the item on your cursor", AccountStatus::Steward, command_iteminfo) ||
command_add("itemsearch", "[Search Criteria] - Search for an item", AccountStatus::Steward, command_itemsearch) ||
command_add("kick", "[Character Name] - Disconnect a player by name", AccountStatus::GMLeadAdmin, command_kick) ||
command_add("kill", "Kill your target", AccountStatus::GMAdmin, command_kill) ||
Expand Down Expand Up @@ -1031,7 +1030,6 @@ void command_bot(Client *c, const Seperator *sep)
#include "gm_commands/invul.cpp"
#include "gm_commands/ipban.cpp"
#include "gm_commands/iplookup.cpp"
#include "gm_commands/iteminfo.cpp"
#include "gm_commands/itemsearch.cpp"
#include "gm_commands/kick.cpp"
#include "gm_commands/kill.cpp"
Expand Down
1 change: 0 additions & 1 deletion zone/command.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ void command_invsnapshot(Client *c, const Seperator *sep);
void command_invul(Client *c, const Seperator *sep);
void command_ipban(Client *c, const Seperator *sep);
void command_iplookup(Client *c, const Seperator *sep);
void command_iteminfo(Client *c, const Seperator *sep);
void command_itemsearch(Client *c, const Seperator *sep);
void command_kick(Client *c, const Seperator *sep);
void command_killallnpcs(Client *c, const Seperator *sep);
Expand Down
94 changes: 0 additions & 94 deletions zone/gm_commands/iteminfo.cpp

This file was deleted.

0 comments on commit 3c361be

Please sign in to comment.