diff options
author | tom-overton <tom.overton@outlook.com> | 2023-08-28 17:15:15 -0700 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2023-08-31 21:41:11 +0100 |
commit | b65f4a80da28e7ec4de16c8b1abf906e8d7be2c5 (patch) | |
tree | 0012df427410df14fa3a828a482683056fc32933 /src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java | |
parent | b817d4f366169e723c573c0da59d5494546430ef (diff) |
Remove accidentally added code
Diffstat (limited to 'src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java')
-rwxr-xr-x | src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java b/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java index edf7b50..658bb01 100755 --- a/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java +++ b/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java @@ -5291,15 +5291,7 @@ public abstract class AbstractRomHandler implements RomHandler { Collections.shuffle(newItems, this.random); Collections.shuffle(newTMs, this.random); - - List<Integer> oldItems = this.getRegularFieldItems(); - String[] itemNames = this.getItemNames(); - for (int i = 0; i < oldItems.size(); i++) { - String oldName = itemNames[oldItems.get(i)]; - String newName = itemNames[newItems.get(i)]; - System.out.println(oldName + " => " + newName); - } - + this.setRegularFieldItems(newItems); this.setFieldTMs(newTMs); } |