* shared magic energy examine * fix #1067 * fix #984 * nerf slimes * fireSpread nerf * slimes demiplane examine + remove whistler
25 lines
628 B
C#
25 lines
628 B
C#
using Content.Shared._CP14.MagicEnergy;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Content.Server._CP14.MagicEnergy;
|
|
|
|
public sealed partial class CP14MagicEnergySystem : SharedCP14MagicEnergySystem
|
|
{
|
|
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
|
[Dependency] private readonly CP14MagicEnergyCrystalSlotSystem _magicSlot = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
InitializeDraw();
|
|
InitializePortRelay();
|
|
}
|
|
|
|
public override void Update(float frameTime)
|
|
{
|
|
base.Update(frameTime);
|
|
|
|
UpdateDraw(frameTime);
|
|
UpdatePortRelay(frameTime);
|
|
}
|
|
}
|