Files
Putnam3145andGitHub 59e2b70d5a Fix hand stuns, + a typo (#7537)
## About The Pull Request

1. Fixes a typo on groin shots.
2. Makes groin shots generic except versus *explicitly* male. I kinda
suspect the original coder didn't know you can do !=?
3. Makes right-handed hits not have a chance to disarm the left hand
instead of right.

## Why It's Good For The Game

bugs and typos: bad

## Changelog
🆑
fix: some minor stuff relating to unarmed stuns
/🆑
2026-02-23 00:23:24 -05:00
..
2026-02-23 00:23:24 -05:00
2026-01-24 19:42:25 +00:00

Click Handling

Contains:

  • Low level click handling
  • Clickchain procs

The game's core / low-level click procs have the job of constructing a /datum/event_args/actor/clickchain, which is then fed into unified clickchain handling.

Clickchain handling exists at the /mob, and /obj/item level. The latter is used to handle clicking-with-item. The former is used to handle unarmed interactions. Consequently, /mob clickchains are usually slightly less complicated than those on /obj/item.

Things like action buttons capturing clicks should be handled before entering clickchains.