summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortom-overton <tom.overton@outlook.com>2023-08-28 17:15:15 -0700
committerRafael Marçalo <raroma09@gmail.com>2023-08-31 21:41:11 +0100
commitb65f4a80da28e7ec4de16c8b1abf906e8d7be2c5 (patch)
tree0012df427410df14fa3a828a482683056fc32933 /src
parentb817d4f366169e723c573c0da59d5494546430ef (diff)
Remove accidentally added code
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java10
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);
}