Adds self-message to clown pockets spell, calls post_created() (#93885)

## About The Pull Request

Adds self-message to the clown pockets spell that lets you pull out
clown items from nowhere. Also, calls `post_created()` in
`/datum/action/cooldown/spell/conjure_item`, which it wasn't before.

## Why It's Good For The Game

I don't like seeing my own name in the chatbox from my own actions.
`post_created()` currently is useless. It's still useless, cause it's
only for this spell, but its a lesser degree of uselessness.

## Changelog
🆑

spellcheck: Adds self-message to clown pockets spell

/🆑
This commit is contained in:
Leland Kemble
2025-11-12 03:27:24 +01:00
committed by GitHub
parent 6054124482
commit 288c3a606a
2 changed files with 7 additions and 3 deletions
@@ -72,6 +72,8 @@
if(istype(mob_caster))
mob_caster.put_in_hands(created, del_on_fail = delete_on_failure)
post_created(cast_on, created)
return ..()
/// Instantiates the item we're conjuring and returns it.