Bläddra i källkod

Vampirism/Hardcore mode now use the ActionBar

nossr50 6 år sedan
förälder
incheckning
43aad43bf3
1 ändrade filer med 4 tillägg och 4 borttagningar
  1. 4 4
      src/main/java/com/gmail/nossr50/util/HardcoreManager.java

+ 4 - 4
src/main/java/com/gmail/nossr50/util/HardcoreManager.java

@@ -101,12 +101,12 @@ public final class HardcoreManager {
         }
         }
 
 
         if (totalLevelsStolen > 0) {
         if (totalLevelsStolen > 0) {
-            killer.sendMessage(LocaleLoader.getString("Hardcore.Vampirism.Killer.Success", totalLevelsStolen, victim.getName()));
-            victim.sendMessage(LocaleLoader.getString("Hardcore.Vampirism.Victim.Success", killer.getName(), totalLevelsStolen));
+            NotificationManager.sendPlayerInformation(killer, NotificationType.HARDCORE_MODE, "Hardcore.Vampirism.Killer.Success", String.valueOf(totalLevelsStolen), victim.getName());
+            NotificationManager.sendPlayerInformation(victim, NotificationType.HARDCORE_MODE, "Hardcore.Vampirism.Victim.Success", killer.getName(), String.valueOf(totalLevelsStolen));
         }
         }
         else {
         else {
-            killer.sendMessage(LocaleLoader.getString("Hardcore.Vampirism.Killer.Failure", victim.getName()));
-            victim.sendMessage(LocaleLoader.getString("Hardcore.Vampirism.Victim.Failure", killer.getName()));
+            NotificationManager.sendPlayerInformation(killer, NotificationType.HARDCORE_MODE, "Hardcore.Vampirism.Killer.Failure", victim.getName());
+            NotificationManager.sendPlayerInformation(victim, NotificationType.HARDCORE_MODE, "Hardcore.Vampirism.Victim.Failure", killer.getName());
         }
         }
     }
     }