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

Commit e80a8c3

Browse files
committed
Moves var comments
1 parent 8a3b2a3 commit e80a8c3

File tree

1 file changed

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

1 file changed

+24
-12
lines changed

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

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

26-
var/ram = 100 // Used as currency to purchase different abilities
26+
// Used as currency to purchase different abilities
27+
var/ram = 100
2728
var/list/software = list()
28-
var/userDNA // The DNA string of our assigned user
29-
var/obj/item/computer_hardware/paicard/card // The card we inhabit
30-
var/hacking = FALSE //Are we hacking a door?
29+
// The DNA string of our assigned user
30+
var/userDNA
31+
// The card we inhabit
32+
var/obj/item/computer_hardware/paicard/card
33+
//Are we hacking a door?
34+
var/hacking = FALSE
3135

3236
var/speakStatement = "states"
3337
var/speakExclamation = "declares"
3438
var/speakDoubleExclamation = "alarms"
3539
var/speakQuery = "queries"
3640

37-
var/obj/item/pai_cable/cable // The cable we produce and use when door or camera jacking
41+
// The cable we produce and use when door or camera jacking
42+
var/obj/item/pai_cable/cable
3843

39-
var/master // Name of the one who commands us
40-
var/master_dna // DNA string for owner verification
44+
// Name of the one who commands us
45+
var/master
46+
// DNA string for owner verification
47+
var/master_dna
4148

4249
// Various software-specific vars
4350

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

4756
/// Remote signaler
4857
var/obj/item/assembly/signaler/internal/signaler
4958

5059
var/obj/item/instrument/piano_synth/internal_instrument
51-
var/obj/machinery/newscaster //pAI Newscaster
52-
var/obj/item/healthanalyzer/hostscan //pAI healthanalyzer
60+
//pAI Newscaster
61+
var/obj/machinery/newscaster
62+
//pAI healthanalyzer
63+
var/obj/item/healthanalyzer/hostscan
5364

5465
//Whether the pAI has bought the encryption slot module or not
5566
var/encryptmod = FALSE
@@ -72,7 +83,8 @@
7283
var/emittersemicd = FALSE
7384

7485
var/overload_ventcrawl = 0
75-
var/overload_bulletblock = 0 //Why is this a good idea?
86+
//Why is this a good idea?
87+
var/overload_bulletblock = 0
7688
var/overload_maxhealth = 0
7789
var/silent = FALSE
7890
var/brightness_power = 5

0 commit comments

Comments
 (0)