fix(housing): check bookmark for whitespace

This commit is contained in:
Anna 2021-07-01 13:25:15 -04:00
parent 3420b00062
commit 04f598f44c
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace RoleplayersToolbox.Tools.Housing {
}
internal bool AnyZero() {
return this.Name == string.Empty
return string.IsNullOrWhiteSpace(this.Name)
|| this.WorldId == 0
|| this.Area == 0
|| this.Ward == 0