fix a minor formatting bug
This commit is contained in:
parent
cb19d526eb
commit
bd50962794
@ -39,8 +39,8 @@ namespace EliteBGS.BGS {
|
||||
.ToArray()
|
||||
;
|
||||
|
||||
if (sold == null && sold.Length > 0) {
|
||||
return builder.ToString();
|
||||
if (sold == null || sold.Length <= 0) {
|
||||
return "";
|
||||
}
|
||||
|
||||
foreach (SellCargo sell in sold) {
|
||||
|
@ -60,8 +60,8 @@ namespace EliteBGS.BGS {
|
||||
.ToArray()
|
||||
;
|
||||
|
||||
if (sold == null && sold.Length > 0) {
|
||||
return builder.ToString();
|
||||
if (sold == null || sold.Length <= 0) {
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user