|
|
|
@ -244,6 +244,10 @@ public enum PowersManager {
@@ -244,6 +244,10 @@ public enum PowersManager {
|
|
|
|
|
if (playerCharacter == null) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
if(playerCharacter.getRecycleTimers().containsKey(msg.getPowerUsedID())){ |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
boolean CSRCast = false; |
|
|
|
|
|
|
|
|
|
if(msg.getPowerUsedID() == 430628895) { |
|
|
|
@ -1501,7 +1505,7 @@ public enum PowersManager {
@@ -1501,7 +1505,7 @@ public enum PowersManager {
|
|
|
|
|
// Handle Accepting or Denying a summons.
|
|
|
|
|
// set timer based on summon type.
|
|
|
|
|
boolean wentThrough = false; |
|
|
|
|
if (msg.accepted()) |
|
|
|
|
if (msg.accepted()) { |
|
|
|
|
// summons accepted, let's move the player if within time
|
|
|
|
|
if (source.isAlive()) { |
|
|
|
|
|
|
|
|
@ -1565,7 +1569,10 @@ public enum PowersManager {
@@ -1565,7 +1569,10 @@ public enum PowersManager {
|
|
|
|
|
timers.put("Summon", jc); |
|
|
|
|
wentThrough = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
// recycle summons power
|
|
|
|
|
finishRecycleTime(428523680, source, true); |
|
|
|
|
} |
|
|
|
|
// Summons failed
|
|
|
|
|
if (!wentThrough) |
|
|
|
|
// summons refused. Let's be nice and reset recycle timer
|
|
|
|
|