fix(datastore): typo

This commit is contained in:
Linden
2022-01-22 22:03:57 +11:00
parent 178533cd4a
commit 3c83896771
@@ -70,7 +70,7 @@ function CreateDataStore(name, owner, data)
if self.owner == nil then
MySQL.update('UPDATE datastore_data SET data = ? WHERE name = ?', {json.encode(self.data), self.name})
else
MySQL.update('UPDATE datastore_data SET data = / WHERE name = ? and owner = ?', {json.encode(self.data), self.name, self.owner})
MySQL.update('UPDATE datastore_data SET data = ? WHERE name = ? and owner = ?', {json.encode(self.data), self.name, self.owner})
end
end)