Core/Npcs: Fixed crash when talking to npcs

This commit is contained in:
hondacrx
2021-01-02 12:50:27 -05:00
parent ae3a087904
commit 699c4a43f8
+2 -2
View File
@@ -318,7 +318,7 @@ namespace Game.Networking.Packets
}
}
public struct ClientGossipOptions
public class ClientGossipOptions
{
public int ClientOption;
public byte OptionNPC;
@@ -327,7 +327,7 @@ namespace Game.Networking.Packets
public GossipOptionStatus Status;
public string Text;
public string Confirm;
public TreasureLootList Treasure;
public TreasureLootList Treasure = new TreasureLootList();
public Optional<int> SpellID;
}