Core/AuctionHouse: After taking a break at the start of patch 8.3 auction house is now back in business.

Port From (https://github.com/TrinityCore/TrinityCore/commit/aced88b09bd918b0ed17b6c5e8a6048788600d9d)
This commit is contained in:
hondacrx
2020-04-29 13:52:03 -04:00
parent 8bc9cc9c55
commit 6be4414166
24 changed files with 3032 additions and 1285 deletions
-5
View File
@@ -44,11 +44,6 @@ namespace Framework.Dynamic
Value = default(T);
}
public static implicit operator Optional<T> (T value)
{
return value;
}
public static explicit operator T(Optional<T> value)
{
return (T)value;