Search results

  1. I

    Bug - Not A Bug Mafia always updates internals for June Cleaver's choices, even when its the same choice.

    I had the choices setup to select 4 (Skip) on the June Cleaver's NC, though I was out of skips. This obviously didn't work. But I noticed that the choice was being processed repeatedly, which would be a non-issue but that it was filling the queue with the same choice ID. I think the solution...
  2. I

    Combat Locket - What monsters do you lack?

    Updated the locket data with the sssshshfdhgdfhhgfdfdh, chef boy, and dolph. Not being able to wish for skeletal som would be a bug, but I'll leave it as it might be feasible to obtain.
  3. I

    Feature - Implemented Track Floundry fishing locations

    Because it sounds like you're aggressively chasing after people that don't "give back"
  4. I

    Feature - Implemented Track Floundry fishing locations

    tbh I think you went a bit overboard with that. I do think Vlad's comment was a bit overboard, but the point of this feature request wasn't about that either. I think if a clan wants to track this sort of thing they'd be parsing the clan activity log, and this feature request would have...
  5. I

    Feature - Implemented Provide an easy way to fetch the currently owned zap wand

    get_zap_wand()? If you're happy to expose it as an ash function, I can whip up a PR for that. It feels like the best option if so.
  6. I

    Feature - Implemented Provide an easy way to fetch the currently owned zap wand

    Currently if a script wishes to know if a zap wand is available or not, they must loop over every zap wand item and see if there's one available. My thoughts on this are to store a preference containing the wand ID/name. With 0 or an empty string when wand has exploded or is not available. Of...
  7. I

    Bug - Fixed autoSatisfyWithStash can crash the application if you're clanless

    Using a new account, I mindlessly clicked on "autoSatisfyWithStash" in the preferences and the application promptly froze. Restarting the application had it in an endless loop trying to access the clan stash, until I switched the preference off again.
  8. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    Oh that completely slipped my mind about the system property. I blame lack of sleep. That itself would work as a fix, assuming we're able to hook it in early enough. I wonder if its possible to modify the build process so calls will set it in the invocation process of the jar.
  9. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    https://github.com/adoptium/jdk/blob/master/src/java.base/windows/classes/sun/net/www/content-types.properties https://github.com/adoptium/jdk/blob/master/src/java.base/unix/classes/sun/net/www/content-types.properties Probably these two files. URLConnection is FileURLConnection which is a sun...
  10. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    Here is a terrible terrible workaround. I'm not sure there's a better way without actually patching the issue in Rhino itself. https://github.com/kolmafia/kolmafia/commit/1edab1356cca91386a4123f98ca7ad3d27881da5
  11. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    The issue didn't exist for me until I switched to https://adoptium.net/ Now I can confirm I'm getting the issue. The issue is that adoptium has registered the .js mime type as "text/javascript" while other JDKs see it as "unknown/other" When Rhino sees the prefix of "text" it'll use "8859_1"...
  12. I

    Combat Locket - What monsters do you lack?

    Pushed an update to the script. You can now filter what monsters to show. The file doesn't actually use the same logic, just a warning. My favorite be "canadv", showing what monsters I can get from places I can access. A side effect from the update is that it'll hide monsters that are "not...
  13. I

    Bug - Fixed Java Bug: On some versions of Java, weird things happen to strings with special characters

    https://github.com/kolmafia/kolmafia/blob/main/src/net/sourceforge/kolmafia/textui/command/AshSingleLineCommand.java#L25 Yes, a few places in the source the strings are not read using UTF-8 This doesn't happen for js however, so not sure its related to this issue. Edit: Just realized there's...
  14. I

    Bug IOException: GOAWAY received

    Modified my client to log how many requests were sent, and it appears that every 10k requests; A goaway is sent. response = getClient().send(request, BodyHandlers.ofInputStream()); if (request.method().equalsIgnoreCase("get")) { getRequestsSent++; }else if...
  15. I

    Bug IOException: GOAWAY received

    This GOAWAY error is annoying. I ascended, and received the error. Ascend as a Casual Female Seal Clubber under the Wombat sign on no path, banking 85 Karma. IOException retrieving server reply...
  16. I

    Combat Locket - What monsters do you lack?

    It goes in your locket_monsters.txt file
  17. I

    Combat Locket - What monsters do you lack?

    Just added "all" or "*" as a valid quantifier. Untested however.
  18. I

    Bug csend with commas acts unexpectedly when sending meat

    Slowly looks around, and tries to put the worms back in the can.
  19. I

    Bug csend with commas acts unexpectedly when sending meat

    csend 1,000,000 meat to buffy You would expect this to send 1 million meat to buffy, however the commas has this act in an unexpected manner. Instead CLI will spam a few unexpected item found errors, and send all your meat to buffy. Only a few million meat in my case, but still a nasty...
  20. I

    Feature Store get_locket_monsters() for when reminisce is unavailable and mafia has restarted.

    The combat lover's locket works as expected, the function showing you what monsters you have stored in there. But if you've used all three reminisces, the locket page will no longer tell you what monsters you do know. This is a non-issue as mafia has it stored in a variable, until you restart...
Back
Top