Search results

  1. Rinn

    Excavator - gausie's spading script

    Few updates recently: Removed: WLF Bunker. It was decided there's no discernable pattern of the requests Added: Beach combing rarity Added: Beach combing twinkling tiles
  2. Rinn

    Feature - Implemented int retrieve_cost(item) function to get the meat required to acquire the supplied item

    Yeah I think this is fine, it's using the mall value from StoreManager.getMallPrice() internally just like the mall_price ash function is. I can make a PR. The only thing that might be a little confusing is the interaction with items being in your inventory already and also it considers...
  3. Rinn

    Feature - Implemented int retrieve_cost(item) function to get the meat required to acquire the supplied item

    I think this is just what InventoryManager.priceToAcquire() returns already and could be exposed as an ash func?
  4. Rinn

    BeachComber - fast and efficient beach combing

    My thought was to have a spadingScript handle the logging so it fires regardless of how the beach was combed, for example: https://github.com/gausie/excavator/pull/40
  5. Rinn

    Bug - Fixed retrieve_item appears to be searching the mall multiple times per ingredient

    I did the second because that seems more in line with how mall searches generally work everywhere else, and I couldn't find any other instances where 0 was hardcoded being passed into getMallPrice(). https://github.com/kolmafia/kolmafia/pull/478
  6. Rinn

    Bug - Fixed retrieve_item appears to be searching the mall multiple times per ingredient

    I believe I tracked this down to InventoryManager.priceToAcquire(), specifically this line, if exact is true then 0.0f is passed in to StoreManager.getMallPrice() as the age and that causes the session mall cache to get flushed every call. My thought is that for exactt requests this should...
  7. Rinn

    Feature - Implemented Increase visibility of coverage deltas on GitHub

    I had tried to add a gihub action that posted a comment with the code coverage \ specific unit testing results in a PR but it was a giant pain because the normal action workflow for PRs isn't allowed to comment because it's a security concern, and using the correct workflow was more arduous than...
  8. Rinn

    Bug - Fixed Intrinsic Spiciness only applies bonus spell damage to sauce spells

    https://kol.coldfront.net/thekolwiki/index.php/Intrinsic_Spiciness This is minor but it does cause miscounting for the community service spell damage test so I may try handling this later.
  9. Rinn

    Bug - Fixed retrieve_item appears to be searching the mall multiple times per ingredient

    All these mall searches are from a single call to retrieve_item for a single entendre: Searching for "bottle of tequila"... Search complete. Searching for "fermenting powder"... Search complete. Searching for "cactus fruit"... Search complete. Searching for "double entendre"... Search complete...
  10. Rinn

    New Content - Implemented 2022 New Year Changes

    It's not complete but here's a wip spading sheet about the clover adventures https://docs.google.com/spreadsheets/d/1TKZ_55PMEaHIQbD5BHr_8LG9oJporu2mEv4NQ92K_v4/edit#gid=2075061290
  11. Rinn

    New Content - Implemented 2022 New Year Changes

    31337 scrolls don't drop a hermit script anymore on first use and they as expected still give ten-leaf clovers on subsequent uses.
  12. Rinn

    Bug Consult script + CCS that gets optimised out to nothing leads to "Invalid macro" abort

    I think the macrofier needs to trim extra whitespace from the macro string, because currently it's checking if the length is not empty before sending it to kol, and since yours resolves to three newlines it's not empty but invalid.
  13. Rinn

    Bug Maximizer bug

    Could this be because the first run never reaches the combination with all the +equip requirements before hitting your maximizer limit?
  14. Rinn

    Bug - Fixed Timespinning a Knob Goblin Embezzler resets the semirare counter

    This is where this happens: https://github.com/kolmafia/kolmafia/blob/b26f260dba8a5904d32fb62e750604d063b575a8/src/net/sourceforge/kolmafia/session/EncounterManager.java#L368
  15. Rinn

    Bug - Fixed Relay browser has a broken combat action bar.

    I'd be concerned the the subdomain in that cloudflare url isn't stable. Also all the images seem to still be using the aws url if you log in normally. Maybe this is something that should be parsed from the page source the first time it's needed.
  16. Rinn

    Feature Automatically update PRs before running checks

    Imo rebasing and force pushing a development branch for a PR is completely fine and I do it all the time to update the branch against the main branch rather than dealing with merge commits.
  17. Rinn

    Java 11 now required for KoLmafia, Java 17 recommended

    Older releases are available on GitHub https://github.com/kolmafia/kolmafia/releases. Here's the revision from right before the java 9 change https://github.com/kolmafia/kolmafia/releases/tag/r25711
  18. Rinn

    Bug - Fixed Revision number does not display at the top of mafia anymore

    This being a Java 8 issue doesn't surprise me but that's still weird it wasn't able to read the manifest. Maybe this is a non-issue since we're planning on moving up the minimum version pretty soon anyway.
  19. Rinn

    Bug - Fixed Revision number does not display at the top of mafia anymore

    I cracked open that jar and the manifest looks fine: Manifest-Version: 1.0 Main-Class: net.sourceforge.kolmafia.KoLmafia Build-Revision: 25709 Build-Branch: HEAD Build-Commit: 203da09183f1d00c2f9b2e6392fa252a90870dc8 Build-Jdk: 16.0.1 (AdoptOpenJDK 16.0.1+9) Build-OS: Linux amd64 5.11.0-37-generic
  20. Rinn

    Feature Update checking & downloading

    This is for my own tracking, but it's trivial to get the latest release from the GitHub api, so I should be able to add an auto update check on mafia startup like the point releases were doing. I was thinking probably be best to put this behind a global property, but it would also be cool if...
Back
Top