Fixed issue with boost saving.

This commit is contained in:
Brianna 2019-10-11 12:39:54 -04:00
parent 0c1e8434b7
commit 34de4e622a

View File

@ -46,7 +46,7 @@ public abstract class Storage {
String endTime = String.valueOf(boostData.getEndTime());
prepareSaveItem("boosts", new StorageItem("endtime", endTime),
new StorageItem("amount", boostData.getMultiplier()),
new StorageItem("player", boostData.getPlayer()));
new StorageItem("player", boostData.getPlayer().toString()));
}
}