/ 4 min read
I Won't Be Abducted: fixing what players couldn't read
A broken placement flow, a boss with bad instructions, and an economy that gave away too much. What changed after the jam.
The crafting menu opened. The tool went into your pocket. Then you tried to put it on the board, and nothing happened.
That was one of the problems in the updates after I Won’t Be Abducted shipped. Others were less obvious: crafting worked but gave you far too much, or the boss had a weakness but did a poor job of showing it. Adding more content had exposed how much the game expected you to figure out while aliens were hitting you.
The original jam postmortem covers the weekend build and its cuts. This is about the revisions afterward. I worked with Codex on implementation and debugging, with repeated playtest feedback deciding what needed another pass. The game now runs across four nights, with larger rooms later in the run. Getting those extra systems to make sense took more work than adding them.
A passing test, a broken click
The placement bug was particularly annoying because the placement logic had been tested. Calling that logic directly worked. Clicking through the actual interface did not.
Decorative UI layers were swallowing pointer input before it reached the board. The test skipped the exact part that was broken. The regression check had to exercise the pointer event, not just ask the placement function whether a cell was valid.
There was a separate design problem underneath it. Picking a recipe, finding its pocket, and choosing a cell demanded too much attention during combat. Crafting and placement now pause the fight. Invalid cells leave the tool in your pocket, so a blocked placement does not spend an item or strand you in an unfinished action.
The workbench needed to answer three things together: what can I make, what does it cost, and where does it go? Coin and item icons help, but they only matter if the interaction underneath them is reliable.
The boss needed instructions on the board
The final boss went through two opposite problems. Repeated kicks could end the encounter almost immediately. Adding a guard and attack windows stopped that, but then the opening was hard to understand.
The current cues sit above the boss: WAIT, DODGE THIS ROW, and KICK NOW. The threatened row is marked before the slam. During the opening, free adjacent cells light up with lines pointing toward Dad, and a small countdown shows how long you have. The boss accepts one hit per opening.
The useful change was putting the instruction where you are already looking. A paragraph in a popup cannot help much when you are trying to avoid a row attack and line up a kick.
Crafting was practically free
Cheap tools, frequent coin drops, and money from tool-assisted kills fed each other. The decoy was especially hard to pass up: distracting enemies bought time to do almost everything else.
Tools now cost six coins instead of three. Free coin drops are farther apart, and kills caused by bowling tools into enemies no longer refund money. Retrying a night restores its starting wallet and pockets, so failed attempts cannot become a way to accumulate currency.
The items also needed clearer reasons to exist. The can stuns, the box blocks and can protect a neighboring cell from the boss’s slam, and the decoy draws enemies away but only survives a few bites. Those roles give me something concrete to tune. If distraction still wins every decision, adding another recipe will not solve it.
Keep the jokes out of the player’s way
Enemy speech bubbles fit a game about a kid turning his bedroom into an alien siege. They also compete with instructions. Only one brief bubble appears at a time, with space between them, and chatter clears before the boss’s attack warning.
The visual changes follow the same restraint: faint paper grain, soft edges, and a little dust in the lamplight. The new enemy’s headgear needed to look like part of the character rather than a separate icon stuck on top. The loss image now shows a toppled toy. These replacement illustrations used AI assistance with my existing artwork as reference; the original hand-drawn pieces still set the style.
Ending spoilers: letting Dad in previously dropped you back at the menu too abruptly. There is now a short conversation and credits, giving the joke time to land: the invasion has interrupted lunch, and your defense system is a pencil box. After all that effort keeping him out, the game needed a moment with him in the room.
What I still need to watch
Automated boss runs help check that the encounter is beatable. They cannot tell me whether someone understands the first opening, notices a coin cost, or finds an enemy’s line funny while dodging it.
That is the next useful playtest: watch a fresh player craft once and fight Dad without explaining either system. If I have to lean over and tell them what to press, there is still work to do.