Search results

  1. P

    Bug - Fixed "banishes" CLI command shows HTML code rather than table

    Seems like "textui/command/BanishesCommand.java" wasn't updated to use RequestLogger.printHtml when r27835 changed the behavior. Haven't confirmed if this will fix it, but seems pretty likely. I think "taleofdread" might also be affected, as it displays the text with <p> for paragraph breaks...
  2. P

    Bug Rock, and how to sell it?

    The cause of the problem is that there are two items in the game called "rock", one with ID 2108 (the one you want to sell) and one with ID 8042 (a quest item from Spelunky). The bug is that for some reason, the mall interface isn't looking at IDs when repricing, instead translating the names...
  3. P

    Bug Wrong choice number for choice adventure 1243

    In the Spacegate choice adventure "Interstellar Trade", I wanted to always select "Don't buy the thing". With "choice" I see that buying is 1 and not buying is 2, so I set it permanently with "choice 2 always". Since then I've been getting this error on the command line: Invalid setting 2 for...
  4. P

    Bug - Fixed Can't adventure in PirateRealm Island

    Fixed it for me as well
  5. P

    Bug - Fixed Can't adventure in PirateRealm Island

    This used to work, I think a recent change to split up the island names broke this. However, as PirateRealm Island is the in-game canonical name for the zone, it should still exist.
  6. P

    Bug - Fixed Rest Free Daily Deed

    Well, I've not finished a run in quite a while and the last couple days I get one free rest and then it thinks they're all spent. Something changed recently but I haven't zeroed in on what.
  7. P

    Bug - Fixed Spacegate adventuring broken on some planets

    I noticed recently on some planets mafia would abort auto-adventuring and say "You are currently in a choice.", even though I wasn't. A few lines up I see it says "Unknown item found: exo-server leg braces". This looks like a typo for "exo-servo leg braces", and seems to be the cause of the...
  8. P

    Bug - Not A Bug r26560 - Scripts menu missing user scripts

    So about those gCLI Toolbar Buttons ... uh, where in the mafia GUI do they show up? Because I've never seen them other than in the relay browser which I liked very much, but which has now been removed for some reason. I mostly stay in the relay browser, and it was very convenient to be able to...
  9. P

    Feature Some tabs moved to the bottom of the interface

    Yeah, I didn't expect a fix through settings, more it's a matter of how the panels are built. Clearly it should be possible to not have the tabs at the bottom, as the adventure tab has its sub-tabs laid out differently. Unfortunately, Java GUI stuff isn't my strong point.
  10. P

    Feature Some tabs moved to the bottom of the interface

    Not sure if I should mark this as a bug, but after a recent change, I think r26267, the tabs on panels for e.g. store manager have moved to the bottom of the interface. They show up on the top if I have it as a standalone window. The ergonomics of this change are ... not good. On the...
  11. P

    r26251 - More daily free fights by @midgleyc in

    This breaks glitch monster fight tracking, as it makes _glitchMonsterFights boolean when opening the daily deeds panel, while the rest of the code has it as integer. Boolean is probably more correct, since only one fight is allowed, but presumably that wasn't known at the time the tracking was...
  12. P

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

    Bumping this thread because the mine decoration is still broken.
  13. P

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

    The mine layout seems to work fine, and was also cleared beforehand, as I'd just ascended. It's the twinkly image replacement in webui/MineDecorator.java that I think might not be replacing the right server. Edit: Attached patch fixed it for me.
  14. P

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

    I think the mine decorator might be broken. I don't manually mine very often, so I kinda forgot how it used to look, but I think mafia replaces the twinkly spots with more visibly twinkling images and that appeared not to be the case for me last night.
  15. P

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

    Haven't noticed any breakage anywhere yet, and all stuff mentioned so far appears fixed.
  16. P

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

    Hmm, I assumed based on some of the code that the game's original image server were still being used somewhere. Anyway, I was thinking if it was possible to do a global rewrite of the S3 to cloudfront before any other processing happens, though not sure how that would be done.
  17. P

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

    Digging in a little more, it now looks like parts of the game are using the old amazon image server, while parts are using the new one at cloudfront. I don't know if this is a transient issue until the devs work through the game code, so not sure how much effort should be made to be able to...
  18. P

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

    OK, so I did some more digging to find out why mafia wasn't getting images down and cached, and I found some ... odd code in utilities/FileUtilities.java in the function localImageName. Seems like it's looking for where to do some substitution and is doing that by looking for the substring...
  19. P

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

    I noticed the HTML was referencing a cloudfront server for hosting static things, which I don't recall being the case before. Specifically https://d2uyhvukfffg5a.cloudfront.net/ I tried building mafia with that instead of https://s3.amazonaws.com/images.kingdomofloathing.com in KoLmafia.java...
  20. P

    r25717 - Format the entirety of src/, test/. (fia/pull/50']#50) This was done with `./gradlew spotlessAp

    Git's very confusing to me, so I'll probably fix up my patches by hand and make them fit the new format and call it a day on that. I understand why this needed to happen and how it'll not be a repeating thing. I just thought it was funny that I spent a good bit of time moving to a new...
Top