- Change a replace call to a put call to satisfy Android SDK demands (fixes Android Forge compilation).

This commit is contained in:
Agetian
2016-12-27 19:11:11 +00:00
parent a2cca4cb5a
commit 7f05f08efc

View File

@@ -31,7 +31,7 @@ public class ReplaceEffect extends SpellAbilityEffect {
case NotReplaced:
case Updated: {
for (Map.Entry<String, Object> e : params.entrySet()) {
originalParams.replace(e.getKey(), e.getValue());
originalParams.put(e.getKey(), e.getValue());
}
}
default: