mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Change a replace call to a put call to satisfy Android SDK demands (fixes Android Forge compilation).
This commit is contained in:
@@ -31,7 +31,7 @@ public class ReplaceEffect extends SpellAbilityEffect {
|
|||||||
case NotReplaced:
|
case NotReplaced:
|
||||||
case Updated: {
|
case Updated: {
|
||||||
for (Map.Entry<String, Object> e : params.entrySet()) {
|
for (Map.Entry<String, Object> e : params.entrySet()) {
|
||||||
originalParams.replace(e.getKey(), e.getValue());
|
originalParams.put(e.getKey(), e.getValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user