Search results

  1. R

    Bug - Fixed Gaining level in Relay Browser doesn't update compact side pane

    Adding a call to KoLCharacter.updateStatus() to the setLevel method should fix this I think?
  2. R

    Feature Familiar attributes

    Yes, those are tags. The order is the order they appear ingame, if we can get it. For zootomist, the order defines the order the enchantments appear on the Nipple casts. ( [id] => 103 [type] => Pair of Ragged Claws [name] => Snails [picture] => raggedclaws [cagematch] => 1...
  3. R

    New Content Spring Challenge Path: Z is for Zootomist

    It might be the highest of the three, or it might just be myst: I picked muscle because the Tavern adventure was Seal Clubber. But as you can't gain stats without grafting and your level is independent of your stats, I don't really know what mainstat is used for. The fix to level is that we...
  4. R

    Differing locations between KoL and KolMafia

    My plan was to fix the ones which were different from KoL and not the same as another location -- like we do for monsters, and unlike what we do for items. The previous names would become aliases for the new ones. So far I am aware of the Hippy Camp / Frat House losing their starting "The"...
  5. R

    autoscend - a sl_ascend fork/continuation

    > Today I had autoscend stop adventuring because it felt that it had spent too many turns trying to get the ingredients for wet stunt nut stew in Whitey's Grove. Do you have a log with the exact message? Expected turns with 0% item drop / combat is ~19 by my calcs. How many turns did it spend?
  6. R

    Feature - Implemented Add a "Pending change in required Java version" nag message.

    For previous updates, we have followed the LTS versions: 8 to 11 to 17 to 21. That's why the next is 24. Irrat has filed this as a draft because it's not something we can do yet. The PR adds a message to the login screen because people were missing the message we added after you login. It may...
  7. R

    Bug Roman candelabra damage not tracked

    nice find! I think that's the consequence manager overriding the modifiers, then, and the modifiers aren't parsed correctly because they're roman numerals. So it'll need to be special-cased to not do that.
  8. R

    Bug Roman candelabra damage not tracked

    The prefrerences update when the description for the roman candelabra is viewed, which happens when the session is initialized. Looking at modifiers.txt I can't see anything obviously wrong with the elemental damage part.
  9. R

    Bug - Fixed Mafia runs auto_post_adv.ash during combat

    Do you have both the combat action bar and the old-style combat forms enabled? That can mess some things up.
  10. R

    New Content Clan Photobooth

    That wasn't implemented, so either parse the page or whitelist to BAFH which has everything. Or PR it, implementing it however you like.
  11. R

    Bug - Fixed trackedMonsters resets on login

    r28287. Thanks for the report!
  12. R

    Bug - Fixed mafia doesn't recognize +adv from the briefcase

    Should be fixed in r28275, thanks for the nudge.
  13. R

    Bug - Fixed Maximizer suggests equipping a watch in the wrong slot

    The line assertThat(getBoosts(), not(hasItem(recommendsSlot(Slot.ACCESSORY1)))); is a test. When the test fails, it prints what you see: we expected (something), but actually (something else). In this case, we expect that running the maximizer does not change accessory 1, but in fact...
  14. R

    Bug - Fixed Maximizer suggests equipping a watch in the wrong slot

    We expect getBoosts() to return a collection, and for that collection to not have an item that recommends slot ACCESSORY1. However, the collection was [<[equip acc1 ...]>] which does equip something in acc1, so the assertion fails.
  15. R

    Bug - Fixed Maximizer suggests equipping a watch in the wrong slot

    My current acc1 here is the Cincho de Mayo, which doesn't offer any +adv or +fites. The Counterclockwise Watch is +3 compared to the baywatch, but it suggests replacing acc1 instead of acc3... I have reproduced this with a test, which is a rarity for maximizer bugs. @Test void...
  16. R

    New Content CyberRealm keycode - 2025 item of the year

    Countermeasures determines both what the special virus is, and the halfway adventure element. Yes, the intrusion determines the hacker. Everything is named accordingly except black implies grey. I guess it doesn't show up with a name due to the HTML not matching (the name is set in code)...
  17. R

    Bug - Fixed trackedMonsters resets on login

    I can confirm. The CLI opens with logPreferenceChange => true Sending login request... Preference _concoctionDatabaseRefreshes changed from to 1 Using data override: data/mallprices.txt Preference pingLatest changed from api:10:114:126:1188:19620:118.80 to...
  18. R

    My personal Meat farming script

    If _takerSpaceSuppliesDelivered is false, you need to visit the TakerSpace (visit_url("campground.php?action=workshed");) to update the ingredients before the creatable_amount call is correct. I recently fixed it to refresh concoctions when you create things in r28233.
Back
Top