Skip to content

Commit c48814e

Browse files
Update WeaponPlusDB.cs
1 parent 7eea1b1 commit c48814e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Economics.WeaponPlus/WeaponPlusDB.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public bool DeleteDB(string owner, int ID = 0)
124124
{
125125
try
126126
{
127-
this.database.Query(ID == 0 ? "DELETE * FROM WeaponPlusDBBasedOnEconomics WHERE owner = @0" : "DELETE * FROM WeaponPlusDBBasedOnEconomics WHERE owner = @0 And itemID = @1", owner, ID);
127+
this.database.Query(ID == 0 ? "DELETE FROM WeaponPlusDBBasedOnEconomics WHERE owner = @0" : "DELETE FROM WeaponPlusDBBasedOnEconomics WHERE owner = @0 And itemID = @1", owner, ID);
128128
return true;
129129
}
130130
catch (Exception ex)
@@ -155,4 +155,4 @@ public bool DeleteDBAll()
155155
}
156156
}
157157
#endregion
158-
}
158+
}

0 commit comments

Comments
 (0)