mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-22 18:25:59 +01:00
Fix for mysql issue.
This commit is contained in:
parent
06543dc056
commit
5625ffaa14
@ -107,7 +107,7 @@ public class StorageMysql extends Storage {
|
||||
|| to.getValue().length != last.getValue().length)
|
||||
continue;
|
||||
toSave.remove(to.getKey());
|
||||
for (int i = 0; i < to.getValue().length; i ++) {
|
||||
for (int i = 0; i < to.getValue().length - 1; i ++) {
|
||||
if (!to.getValue()[i].asObject().toString()
|
||||
.equals(last.getValue()[i].asObject().toString())) {
|
||||
//Update
|
||||
|
Loading…
Reference in New Issue
Block a user