forked from MagicBane/Server
More itembase refactor
This commit is contained in:
@@ -275,7 +275,7 @@ public enum ChatManager {
|
|||||||
PlayerCharacter pcSender = null;
|
PlayerCharacter pcSender = null;
|
||||||
|
|
||||||
if (sender.getObjectType().equals(GameObjectType.PlayerCharacter))
|
if (sender.getObjectType().equals(GameObjectType.PlayerCharacter))
|
||||||
pcSender = (PlayerCharacter) sender;
|
pcSender = sender;
|
||||||
|
|
||||||
if (isFlood) {
|
if (isFlood) {
|
||||||
ChatManager.chatSayError(pcSender, FLOOD_USER_ERROR);
|
ChatManager.chatSayError(pcSender, FLOOD_USER_ERROR);
|
||||||
@@ -597,7 +597,6 @@ public enum ChatManager {
|
|||||||
distroList.remove(awo);
|
distroList.remove(awo);
|
||||||
else if (awo.getObjectUUID() == tar.getObjectUUID())
|
else if (awo.getObjectUUID() == tar.getObjectUUID())
|
||||||
distroList.remove(awo);
|
distroList.remove(awo);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String textToThief = "";
|
String textToThief = "";
|
||||||
@@ -607,7 +606,6 @@ public enum ChatManager {
|
|||||||
if (item != null) //Steal
|
if (item != null) //Steal
|
||||||
if (success) {
|
if (success) {
|
||||||
String name = "";
|
String name = "";
|
||||||
if (item.getItemBase() != null)
|
|
||||||
if (item.getItemBase().getUUID() == 7)
|
if (item.getItemBase().getUUID() == 7)
|
||||||
name = amount + " gold ";
|
name = amount + " gold ";
|
||||||
else {
|
else {
|
||||||
@@ -641,6 +639,7 @@ public enum ChatManager {
|
|||||||
//Send msg to thief
|
//Send msg to thief
|
||||||
HashSet<AbstractWorldObject> senderList = new HashSet<>();
|
HashSet<AbstractWorldObject> senderList = new HashSet<>();
|
||||||
senderList.add(sender);
|
senderList.add(sender);
|
||||||
|
|
||||||
if (!textToThief.isEmpty())
|
if (!textToThief.isEmpty())
|
||||||
ChatManager.chatSystemSend(senderList, textToThief, 1, 2);
|
ChatManager.chatSystemSend(senderList, textToThief, 1, 2);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user