Fixed wireddata incompatibility issue

This commit is contained in:
Remco 2021-01-04 21:43:14 +01:00
parent 3960ee53f5
commit 8fe9cadb76

View File

@ -121,7 +121,7 @@ public class WiredEffectGiveHotelviewBonusRarePoints extends InteractionWiredEff
super.setDelay(Integer.parseInt(wiredData.split("\t")[0]));
try {
this.amount = Integer.parseInt(this.getWiredData().split("\t")[1]);
this.amount = Integer.parseInt(wiredData.split("\t")[1]);
} catch (Exception e) {
}
}