- Fixed Hardened Scales

This commit is contained in:
swordshine
2015-01-27 04:35:40 +00:00
parent 2021adb21e
commit e32030bc35

View File

@@ -27,7 +27,7 @@ public class ReplaceAddCounter extends ReplacementEffect {
*/
@Override
public boolean canReplace(Map<String, Object> runParams) {
if (!runParams.get("Event").equals("AddCounter")) {
if (!runParams.get("Event").equals("AddCounter") || ((int) runParams.get("CounterNum")) <= 0) {
return false;
}