Sign in to follow this  
zCat

Path of Power

Recommended Posts

A mod to reduce the height required for a Path of Power tile would help on flattish maps.

Share this post


Link to post
Share on other sites

In Cults class, getPathFor() method is a logic statement that looks like this for me:

if (performerHeight > 2000)

Changing that 2000 will let you get Path of Power questions at lower elevations. Unfortunately, it is WU's normal hardcoded magic number business ( I don't think it's a compiler optimization either as there isn't a constant field with that 2000 number) so one would likely have to do a bytecode find-replace type alteration.

 

It might be possible to use Javassist's expression editor on Cults.getPathFor() method and change the return value so it's 5. A value of 5 is Path of Power here.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this