diff options
author | pidgezero_one <s.kischak@gmail.com> | 2022-12-11 16:59:25 -0500 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2023-01-03 14:40:46 +0000 |
commit | ba8f9d0e32807bda37a6119b6692f5bc6bcc5095 (patch) | |
tree | 5d95f5e5a77c4c844e183762a8e75e6898a534b2 /src/com/sneed | |
parent | e465b8abd4cc23adf4478338da12fbd18afe678e (diff) |
remove twistedspoon from vc (#581)
Co-authored-by: pidgezero <pidgezero.one@gmail.com>
Diffstat (limited to 'src/com/sneed')
-rwxr-xr-x | src/com/sneed/pkrandom/romhandlers/Gen2RomHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/sneed/pkrandom/romhandlers/Gen2RomHandler.java b/src/com/sneed/pkrandom/romhandlers/Gen2RomHandler.java index 0ea60e0..debe229 100755 --- a/src/com/sneed/pkrandom/romhandlers/Gen2RomHandler.java +++ b/src/com/sneed/pkrandom/romhandlers/Gen2RomHandler.java @@ -329,10 +329,10 @@ public class Gen2RomHandler extends AbstractGBCRomHandler { allowedItems = Gen2Constants.allowedItems.copy();
nonBadItems = Gen2Constants.nonBadItems.copy();
actualCRC32 = FileFunctions.getCRC32(rom);
- // VietCrystal: exclude Burn Heal, Calcium, and Elixir
+ // VietCrystal: exclude Burn Heal, Calcium, TwistedSpoon, and Elixir
// crashes your game if used, glitches out your inventory if carried
if (isVietCrystal) {
- allowedItems.banSingles(Gen2Items.burnHeal, Gen2Items.calcium, Gen2Items.elixer);
+ allowedItems.banSingles(Gen2Items.burnHeal, Gen2Items.calcium, Gen2Items.elixer, Gen2Items.TwistedSpoon);
}
}
|