diff --git a/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs b/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs
index 459512c..b5ff613 100644
--- a/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs
+++ b/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs
@@ -110,7 +110,7 @@ public MPL3Entry(byte[] data)
/// Gets the size of an entry.
///
/// The size.
- public new static int GetSize()
+ public static int GetSize()
{
return 56;
}
@@ -119,7 +119,7 @@ public MPL3Entry(byte[] data)
/// Gets the size of the data contained in this chunk.
///
/// The size.
- public new byte[] Serialize(long offset = 0)
+ public byte[] Serialize(long offset = 0)
{
using (var ms = new MemoryStream())
using (var bw = new BinaryWriter(ms))