Files
Aurora.3/code/modules/cciaa/cciaa_datums.dm
Werner b754c25195 Further CCIA Adaptations (#6750)
* Further CCIA Adaptations

Changes the CCIA Recorder to ask if there was Antag Involvement in the Incident and adds additional db changes.

* Implements Review Changes

* Recorder Interaction Changes

Changes the recorder click interaction for agents and adds the options to reset the recorder

* Displays the report topics

Shows the internal topic to the interviewing agent upon selection of the IR
Shows the public topic to the interviewee upon scanning of the fingerprint

* Update the status of the report if a user claims antag involvement.

* Asks the char how the antags influenced them.

* Fixes SQL Migration Error

* Fix SQL Migration and Query Bug

* Fixes a issue with the report selection and the query saving

* More sanitization
2020-05-13 23:29:59 +02:00

17 lines
448 B
Plaintext

/datum/ccia_report
var/id
var/report_date
var/title
var/public_topic
var/internal_topic
var/game_id
var/status
/datum/ccia_report/New(var/id, var/report_date, var/title, var/public_topic=null, var/internal_topic=null, var/game_id=null, var/status="new")
src.id = text2num(id)
src.report_date = report_date
src.title = title
src.public_topic = public_topic
src.internal_topic = internal_topic
src.game_id = game_id
src.status = status