Spellcaster slowdown, mole nerf, new shoulder slot, healing staff (#538)

* healing staff sprite

* new back slot and move all big things to whis slot

* replace ring to staff

* caster sowdown! Mole rebalance

* loadouts fix

* fix weapon rotation

* Update spawners.yml
This commit is contained in:
Ed
2024-11-05 19:05:40 +03:00
committed by GitHub
parent c3d4303270
commit b5df675187
48 changed files with 230 additions and 81 deletions

View File

@@ -137,7 +137,7 @@ public partial class CP14SharedMagicSystem : EntitySystem
private void OnDelayedEntityWorldTargetDoAfter(Entity<CP14MagicEffectComponent> ent,
ref CP14DelayedEntityWorldTargetActionDoAfterEvent args)
{
var endEv = new CP14EndCastMagicEffectEvent();
var endEv = new CP14EndCastMagicEffectEvent{Performer = args.User};
RaiseLocalEvent(ent, ref endEv);
if (args.Cancelled || !_net.IsServer)
@@ -160,7 +160,7 @@ public partial class CP14SharedMagicSystem : EntitySystem
private void OnDelayedInstantActionDoAfter(Entity<CP14MagicEffectComponent> ent, ref CP14DelayedInstantActionDoAfterEvent args)
{
var endEv = new CP14EndCastMagicEffectEvent();
var endEv = new CP14EndCastMagicEffectEvent{Performer = args.User};
RaiseLocalEvent(ent, ref endEv);
if (args.Cancelled || !_net.IsServer)