Bug - Fixed Moxie magnet doesn't work on Left-Hand Man but maximizer recommends it.

I have to say I simply can't see in the code where the maximizer is even made aware of the fact that the moxie magnet even does anything at all 😬
 
After about 15 minutes of digging around...

In modifiers.txt, some things have "Moxie Controls MP", or "Moxie May Control MP". Find that in Modifiers.java, see that it corresponds with MOXIE_CONTROLS_MP in the list of int values just above, and then you can see where that is used later on in the code.
 
After about 15 minutes of digging around...

In modifiers.txt, some things have "Moxie Controls MP", or "Moxie May Control MP". Find that in Modifiers.java, see that it corresponds with MOXIE_CONTROLS_MP in the list of int values just above, and then you can see where that is used later on in the code.
Ohhhh.... we index into that array to refer to the modifier. Wild. Thanks
 
With that good intel I have fixed it (and some undiscovered other bugs around the same sort of thing) in r20710
 
Back
Top