Add descriptions to all gm 1 commands
This commit is contained in:
@@ -24,13 +24,13 @@
|
||||
package client.command.commands.gm1;
|
||||
|
||||
import client.MapleCharacter;
|
||||
import client.command.Command;
|
||||
import client.MapleClient;
|
||||
import client.command.Command;
|
||||
import server.life.MapleMonster;
|
||||
|
||||
public class BossHpCommand extends Command {
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Show HP of bosses on current map.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -24,13 +24,13 @@
|
||||
package client.command.commands.gm1;
|
||||
|
||||
import client.MapleCharacter;
|
||||
import client.MapleClient;
|
||||
import client.SkillFactory;
|
||||
import client.command.Command;
|
||||
import client.MapleClient;
|
||||
|
||||
public class BuffMeCommand extends Command {
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Activate GM buffs on self.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -24,27 +24,18 @@
|
||||
package client.command.commands.gm1;
|
||||
|
||||
import client.MapleCharacter;
|
||||
import client.command.Command;
|
||||
import client.MapleClient;
|
||||
import client.command.Command;
|
||||
import constants.game.GameConstants;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import server.maps.MaplePortal;
|
||||
import server.maps.FieldLimit;
|
||||
import server.maps.MapleMap;
|
||||
import server.maps.MapleMapFactory;
|
||||
import server.maps.MapleMiniDungeonInfo;
|
||||
import server.maps.*;
|
||||
|
||||
import java.util.Comparator;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.*;
|
||||
import java.util.Map.Entry;
|
||||
|
||||
public class GotoCommand extends Command {
|
||||
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Warp to a predefined map.");
|
||||
|
||||
List<Entry<String, Integer>> towns = new ArrayList<>(GameConstants.GOTO_TOWNS.entrySet());
|
||||
sortGotoEntries(towns);
|
||||
|
||||
@@ -24,13 +24,13 @@
|
||||
package client.command.commands.gm1;
|
||||
|
||||
import client.MapleCharacter;
|
||||
import client.command.Command;
|
||||
import client.MapleClient;
|
||||
import client.command.Command;
|
||||
import server.life.MapleMonster;
|
||||
|
||||
public class MobHpCommand extends Command {
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Show HP of mobs on current map.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
package client.command.commands.gm1;
|
||||
|
||||
import client.MapleCharacter;
|
||||
import client.command.Command;
|
||||
import client.MapleClient;
|
||||
import client.command.Command;
|
||||
import server.MapleItemInformationProvider;
|
||||
import server.life.MapleMonsterInformationProvider;
|
||||
import server.life.MonsterDropEntry;
|
||||
@@ -35,7 +35,7 @@ import java.util.Iterator;
|
||||
|
||||
public class WhatDropsFromCommand extends Command {
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Show what items drop from a mob.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -38,7 +38,7 @@ import java.util.Iterator;
|
||||
|
||||
public class WhoDropsCommand extends Command {
|
||||
{
|
||||
setDescription("");
|
||||
setDescription("Show what drops an item.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user