Skip to content

Commit

Permalink
[MIRROR] The labour camp shuttle paroles the user when they complete …
Browse files Browse the repository at this point in the history
…their points. The station return message specifies which prisoner returned. (#2410) (#3257)

* The labour camp shuttle paroles the user when they complete their points. The station return message specifies which prisoner returned. (#83132)

## About The Pull Request
The labour camp shuttle paroles the user when they complete their
points. The station return message specifies which prisoner returned.
## Why It's Good For The Game
People shouldn't be looking like fugitives after completing their work.
## Changelog
:cl:
qol: The labor camp shuttle properly sets people to parole after they
complete their work.
qol: The labor camp shuttle specifies which person returned to the
station.
/:cl:

---------



* The labour camp shuttle paroles the user when they complete their points. The station return message specifies which prisoner returned.

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: Pickle-Coding <[email protected]>
Co-authored-by: MrMelbert <[email protected]>
  • Loading branch information
4 people authored May 9, 2024
1 parent 86443ca commit fb3650c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/modules/mining/laborcamp/laborstacker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@
else
if(!(obj_flags & EMAGGED))
security_radio.set_frequency(FREQ_SECURITY)
security_radio.talk_into(src, "A prisoner has returned to the station. Minerals and Prisoner ID card ready for retrieval.", FREQ_SECURITY)
var/datum/record/crew/target = find_record(user_mob.real_name)
target?.wanted_status = WANTED_PAROLE

security_radio.talk_into(src, "/p [user_mob.name] returned to the station. Minerals and Prisoner ID card ready for retrieval.", FREQ_SECURITY)
user_mob.log_message("has completed their labor points goal and is now sending the gulag shuttle back to the station.", LOG_GAME)
to_chat(user_mob, span_notice("Shuttle received message and will be sent shortly."))
return TRUE
Expand Down

0 comments on commit fb3650c

Please sign in to comment.