Recent content by heeheehee

  1. H

    Bug Build process no longer cleans out old jar files

    I had merged the other PR, and then noticed that it generated build failures on macOS. I sent https://github.com/kolmafia/kolmafia/pull/3034 to revert back to the broken state, but I'd also approve an appropriate fix-forward.
  2. H

    Bug Build process no longer cleans out old jar files

    https://github.com/kolmafia/kolmafia/pull/3032 does the trick for me.
  3. H

    Bug autoSatisfyWithCoinmasters cannot be set by scripts

    I suspect that's more of an oversight, in that it also works in the other direction: if I temporarily disable autoSatisfyWithCoinmasters, Mafia still uses coinmasters despite the preference saying not to. However, if I force refreshConcoctions() (as with `refresh concoctions`), that clears the...
  4. H

    Issue with constant messages wrt deprecated preference

    That PR has been merged onto the main branch, but hasn't yet made it to the Release branch. Track https://github.com/loathers/TourGuide/pull/258 if you want to see when the fix will be available.
  5. H

    Issue with constant messages wrt deprecated preference

    Well, I sent them https://github.com/loathers/TourGuide/pull/256 so we'll see when that gets merged.
  6. H

    Issue with constant messages wrt deprecated preference

    @gausie asserts that this was being caused by Mafia code (possibly related to the daily deeds manager, if I had to guess?), and that this should be fixed by r28615.
  7. H

    Issue with constant messages wrt deprecated preference

    That said, I also see an explicit reference in https://github.com/loathers/TourGuide/blob/main/Source/relay/TourGuide/Sets/Skills.ash#L209 which may be more relevant.
  8. H

    Issue with constant messages wrt deprecated preference

    Hm, but the deprecation warning is configured in defaults.txt. I suppose it wouldn't be too bad if libram checked for the deprecated attribute and stopped populating that.
  9. H

    Issue with constant messages wrt deprecated preference

    This is most likely coming from any one of the loathers scripts, due to https://github.com/loathers/libram/blob/main/src/propertyTypes.ts#L2 which in turn is autogenerated from all of the properties per the comment on line 1. I think the easiest workaround on our side is to remove it from...
  10. H

    autoscend - a sl_ascend fork/continuation

    FYI -- you'll have an easier time getting your change(s) accepted if you break up your PR into several smaller PRs so it's not as daunting to review all at once. (One PR per logical fix or perhaps per challenge path is a good rule of thumb. Bundling too many changes together makes it hard to...
  11. H

    Issues running java/kolmafia

    If you're using `java` from the command line, you'll need to specify `java -jar Kolmafia-28594.jar`.
  12. H

    I need some help troubleshooting my installation

    Hopefully you then reinstalled Java 21, since we require that at a minimum. fronobulax's suggestion to use multitool may also help.
  13. H

    Bug SMOOCH appearance rates sometimes starts off wrong

    appearance_rates has a two-parameter version. if you want stateful results, specify `true` as the second argument. This forces Mafia to call AreaCombatData.recalculate(), which in turn calls the code in adjustConditionalWeighting in the linked PR. Once recalculate() is called (one way or...
  14. H

    Bug - Fixed hermit() command cannot grab jabanero peppers

    https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/textui/command/HermitCommand.java#L61 Could probably be augmented to use the same fuzzy find that we use elsewhere. I may make that change over the weekend if nobody beats me to it.
Back
Top