mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-05-23 07:06:44 +01:00
8745b6bd40
borgs can't move when no charge; fixed misplaced light in RD office
19 lines
374 B
Plaintext
19 lines
374 B
Plaintext
// Contains:
|
|
// /datum/text_parser/parser
|
|
|
|
/datum/text_parser/parser
|
|
var/input_line = ""
|
|
var/mob/speaker
|
|
|
|
/datum/text_parser/parser/proc/print(line)
|
|
speaker.say(line)
|
|
|
|
/datum/text_parser/parser/proc/set_name(name)
|
|
speaker.name = name
|
|
speaker.real_name = name
|
|
|
|
/datum/text_parser/parser/proc/new_session()
|
|
input_line = ""
|
|
|
|
/datum/text_parser/parser/proc/process_line()
|