Fix wrong syntax message in !drop command (#372)

This commit is contained in:
MedicOP
2019-01-27 17:21:40 +01:00
committed by Ronan Lana
parent 5be2e141f3
commit 6d520937a1

View File

@@ -43,7 +43,7 @@ public class ItemDropCommand extends Command {
MapleCharacter player = c.getPlayer();
if (params.length < 1) {
player.yellowMessage("Syntax: !item <itemid> <quantity>");
player.yellowMessage("Syntax: !drop <itemid> <quantity>");
return;
}
@@ -88,7 +88,7 @@ public class ItemDropCommand extends Command {
return;
} else {
player.yellowMessage("Pet Syntax: !item <itemid> <expiration>");
player.yellowMessage("Pet Syntax: !drop <itemid> <expiration>");
return;
}
}