first commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using NitroxClient.Communication.Abstract;
|
||||
using NitroxClient.Communication.Packets.Processors.Abstract;
|
||||
using NitroxModel;
|
||||
using NitroxModel.Packets;
|
||||
using NitroxModel_Subnautica.DataStructures;
|
||||
using Story;
|
||||
|
||||
namespace NitroxClient.Communication.Packets.Processors;
|
||||
|
||||
public class StoryGoalExecutedClientProcessor : ClientPacketProcessor<StoryGoalExecuted>
|
||||
{
|
||||
private readonly IPacketSender packetSender;
|
||||
|
||||
public StoryGoalExecutedClientProcessor(IPacketSender packetSender)
|
||||
{
|
||||
this.packetSender = packetSender;
|
||||
}
|
||||
|
||||
public override void Process(StoryGoalExecuted packet)
|
||||
{
|
||||
StoryGoalScheduler.main.schedule.RemoveAllFast(packet.Key, static (goal, packetGoalKey) => goal.goalKey == packetGoalKey);
|
||||
|
||||
using (PacketSuppressor<StoryGoalExecuted>.Suppress())
|
||||
using (PacketSuppressor<PDALogEntryAdd>.Suppress())
|
||||
using (PacketSuppressor<KnownTechEntryAdd>.Suppress()) // StoryGoalManager => OnGoalUnlockTracker => UnlockBlueprintData => KnownTech.Add
|
||||
using (PacketSuppressor<PDAEncyclopediaEntryAdd>.Suppress())
|
||||
{
|
||||
StoryGoal.Execute(packet.Key, packet.Type.ToUnity());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user