Add descriptions to all gm 1 commands

This commit is contained in:
P0nk
2021-04-06 19:42:27 +02:00
parent 70d895fef5
commit 3cd23a07e2
6 changed files with 13 additions and 22 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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);

View File

@@ -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

View File

@@ -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

View File

@@ -38,7 +38,7 @@ import java.util.Iterator;
public class WhoDropsCommand extends Command {
{
setDescription("");
setDescription("Show what drops an item.");
}
@Override