mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
Added Inspiration ticks, effects for Multi-Tier Performance Abilities
(BugFix) Build-A-Buff applies correct stats now -- NOTE: Stats that the player does not have yet may not show in character sheet but the server will recognize still recognize their new stats (Added) Inspiration Ticks (BugFix) Inspiration Buffs time corresponds to the players inspiration ticks. (BugFix) "Watch" on radial menu working again (Added) Put in the effects for the multi-tiered performance abilities (Feature) You can now type /[performance effect] [tier number] to use that specific effect (BugFix) showFlyText boolean for showing to observers or not (fixes other players exp gain shown to other players) (Code) Few minor additions/fixes
This commit is contained in:
@@ -195,6 +195,20 @@ public class ConnectionService implements INetworkDispatch {
|
||||
object.setInviteCounter(0);
|
||||
object.setInviteSenderId(0);
|
||||
object.setInviteSenderName("");
|
||||
|
||||
if(object.getAttachment("inspireDuration") != null)
|
||||
object.setAttachment("inspireDuration", null);
|
||||
|
||||
if(object.getInspirationTick() != null) {
|
||||
object.getInspirationTick().cancel(true);
|
||||
object.setInspirationTick(null);
|
||||
}
|
||||
|
||||
if(object.getSpectatorTask() != null) {
|
||||
object.getSpectatorTask().cancel(true);
|
||||
object.setSpectatorTask(null);
|
||||
}
|
||||
|
||||
core.groupService.handleGroupDisband(object);
|
||||
|
||||
for (CreatureObject opponent : object.getDuelList()) {
|
||||
|
||||
Reference in New Issue
Block a user