v2.1.0 #4
Zrp200
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Full Changelog: v2.0.0...v2.1.0
warpcommandThis new command is a wrapper around
ScrollOfTeleportation.teleportChar, and just warps the hero to a selected location.This was possible before, but required two commands, which made it bothersome to use.
As a note, the implementation for this command has not changed since 21de6d3 (0.9.4), which is before Scroll of Debug's oldest target version.
gotofixesThe
gotocommand should now be able to be safely used to skip floors without corrupting the seed. It is also now possible to ascend to skip floors normally after using the command.Previously, the
gotocommand skipped levelgen logic of skipped floors, which had seed-related side effects per level, causing enemies and items to not be consistent with what would be found during normal gameplay.method fixes
Fixed a minor bug causing methods with boolean arguments to always match any input and thus hide other overloaded methods.
As an example, Item has two methods of the following signature:
Weapon.upgrade(boolean)Weapon.upgrade(int)Calling
use weapon upgrade 5would first check the boolean method, and because Boolean.parseBoolean() turns any argument to false, it would end up calling the boolean variant asWeapon.upgrade(false). Now, non-matched booleans are correctly rejected.Builds
Shattered Pixel Dungeon
3.0.1
2.4.2
This discussion was created from the release v2.1.0.
Beta Was this translation helpful? Give feedback.
All reactions