fix(core): Converts vendor sell packets (#375)

- [X] Converts vendor sell packets

Bumps release version
This commit is contained in:
Kamron Batman 2020-12-30 16:27:37 -08:00 committed by GitHub
parent 540a879d63
commit 2a2af424ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 91 additions and 46 deletions

View file

@ -23,7 +23,8 @@ namespace Server
public static class StringHelpers
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string DefaultIfNullOrEmpty(this string value, string def) => value?.Trim().Length > 0 ? value : def;
public static string DefaultIfNullOrEmpty(this string value, string def) =>
string.IsNullOrWhiteSpace(value) ? def : value;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Remove(