switch to getSubset(), mult() instead of mul(), add upper/lower

This commit is contained in:
Ben Fry
2013-04-29 14:59:27 -04:00
parent 0e6077f29c
commit 82df257c77
5 changed files with 93 additions and 105 deletions

View File

@@ -271,7 +271,7 @@ public class IntDict {
}
public void mul(String key, int amount) {
public void mult(String key, int amount) {
int index = index(key);
if (index != -1) {
values[index] *= amount;