Skip to content

Commit

Permalink
[Database] Removed field LastLineEndTime from ConversationTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
BAndysc committed Nov 1, 2021
1 parent 2a14dad commit 8f3e189
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions WDE.MPQ/Services/MpqService.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using WDE.Common.MPQ;
using WDE.Module.Attributes;
using WDE.MPQ.ViewModels;
Expand Down
1 change: 1 addition & 0 deletions WDE.MPQ/ViewModels/WoWFilesVerifier.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.IO;
using WDE.Module.Attributes;

namespace WDE.MPQ.ViewModels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ public interface IConversationTemplate
{
public uint Id { get; }
public uint FirstLineId { get; }
public uint LastLineEndTime { get; }
public string ScriptName { get; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ public class MySqlConversationTemplate : IConversationTemplate

[Column(Name = "FirstLineId")]
public uint FirstLineId { get; set; }

[Column(Name = "LastLineEndTime")]
public uint LastLineEndTime { get; set; }


[Column(Name = "ScriptName")]
public string ScriptName { get; set; } = "";
}
Expand Down

0 comments on commit 8f3e189

Please sign in to comment.