mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
20 lines
426 B
Plaintext
20 lines
426 B
Plaintext
/**
|
|
* _stubs.dm
|
|
*
|
|
* This file contains constructs that the process scheduler expects to exist
|
|
* in a standard ss13 fork.
|
|
*/
|
|
|
|
/**
|
|
* logTheThing
|
|
*
|
|
* In goonstation, this proc writes a message to either the world log or diary.
|
|
*
|
|
* Blame Keelin.
|
|
*/
|
|
/proc/logTheThing(type, source, target, text, diaryType)
|
|
if(diaryType)
|
|
world.log << "Diary: \[[diaryType]:[type]] [text]"
|
|
else
|
|
world.log << "Log: \[[type]] [text]"
|