mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-30 21:17:04 +01:00
16 lines
397 B
Plaintext
16 lines
397 B
Plaintext
/**
|
|
* checks if we're a fishing spot
|
|
*
|
|
* @return fishing spot component, if found
|
|
*/
|
|
/atom/proc/is_fishing_spot()
|
|
return GetComponent(/datum/component/fishing_spot)
|
|
|
|
|
|
/**
|
|
* called just as we're about to start fishing
|
|
* use this to generate a fishing spot if needed.
|
|
*/
|
|
/atom/proc/pre_fishing_query(obj/item/fishing_rod/rod, mob/user)
|
|
SEND_SIGNAL(src, COMSIG_PRE_FISHING_QUERY, rod, user)
|