Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 03b0b6f

Browse files
committed
Autodoc comment support
1 parent 78e1183 commit 03b0b6f

File tree

1 file changed

+16
-16
lines changed
  • code/modules/mob/living/silicon/pai

1 file changed

+16
-16
lines changed

code/modules/mob/living/silicon/pai/pai.dm

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,53 +23,53 @@
2323
var/network = "ss13"
2424
var/obj/machinery/camera/current = null
2525

26-
// Used as currency to purchase different abilities
26+
///Used as currency to purchase different abilities
2727
var/ram = 100
2828
var/list/software = list()
29-
// The DNA string of our assigned user
29+
///The DNA string of our assigned user
3030
var/userDNA
31-
// The card we inhabit
31+
///The card we inhabit
3232
var/obj/item/computer_hardware/paicard/card
33-
//Are we hacking a door?
33+
///Are we hacking a door?
3434
var/hacking = FALSE
3535

3636
var/speakStatement = "states"
3737
var/speakExclamation = "declares"
3838
var/speakDoubleExclamation = "alarms"
3939
var/speakQuery = "queries"
4040

41-
// The cable we produce and use when door or camera jacking
41+
///The cable we produce and use when door or camera jacking
4242
var/obj/item/pai_cable/cable
4343

44-
// Name of the one who commands us
44+
///Name of the one who commands us
4545
var/master
46-
// DNA string for owner verification
46+
///DNA string for owner verification
4747
var/master_dna
4848

4949
// Various software-specific vars
5050

51-
// The airlock being hacked
51+
///The airlock being hacked
5252
var/obj/machinery/door/hackdoor
53-
// Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check
53+
///Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check
5454
var/hackprogress = 0
5555

56-
/// Remote signaler
56+
///Remote signaler
5757
var/obj/item/assembly/signaler/internal/signaler
5858

5959
var/obj/item/instrument/piano_synth/internal_instrument
60-
//pAI Newscaster
60+
///pAI Newscaster
6161
var/obj/machinery/newscaster
62-
//pAI healthanalyzer
62+
///pAI healthanalyzer
6363
var/obj/item/healthanalyzer/hostscan
6464

65-
//Whether the pAI has bought the encryption slot module or not
65+
///Whether the pAI has bought the encryption slot module or not
6666
var/encryptmod = FALSE
6767
var/holoform = FALSE
68-
//Can pAI use their holoprojector?
68+
///Can pAI use their holoprojector?
6969
var/canholo = TRUE
70-
//Can pAI transmit radio messages?
70+
///Can pAI transmit radio messages?
7171
var/can_transmit = TRUE
72-
//Can pAI receive radio messages?
72+
///Can pAI receive radio messages?
7373
var/can_receive = TRUE
7474
var/obj/item/card/id/access_card = new /obj/item/card/id
7575
var/chassis = "repairbot"

0 commit comments

Comments
 (0)