mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 06:36:48 +01:00
## 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 /🆑
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.