Merge pull request #34769 from ShizCalev/var-cleanup
Cleans up unused mob vars
This commit is contained in:
@@ -3327,8 +3327,7 @@
|
|||||||
real_name = "Sergeant Araneus";
|
real_name = "Sergeant Araneus";
|
||||||
movement_type = 1;
|
movement_type = 1;
|
||||||
response_help = "pets";
|
response_help = "pets";
|
||||||
turns_per_move = 10;
|
turns_per_move = 10
|
||||||
voice_name = "unidentifiable voice"
|
|
||||||
},
|
},
|
||||||
/turf/open/floor/carpet,
|
/turf/open/floor/carpet,
|
||||||
/area/crew_quarters/heads/hos)
|
/area/crew_quarters/heads/hos)
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
/mob/living/carbon/alien
|
/mob/living/carbon/alien
|
||||||
name = "alien"
|
name = "alien"
|
||||||
voice_name = "alien"
|
|
||||||
icon = 'icons/mob/alien.dmi'
|
icon = 'icons/mob/alien.dmi'
|
||||||
gender = FEMALE //All xenos are girls!!
|
gender = FEMALE //All xenos are girls!!
|
||||||
dna = null
|
dna = null
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
/mob/living/carbon/human
|
/mob/living/carbon/human
|
||||||
name = "Unknown"
|
name = "Unknown"
|
||||||
real_name = "Unknown"
|
real_name = "Unknown"
|
||||||
voice_name = "Unknown"
|
|
||||||
icon = 'icons/mob/human.dmi'
|
icon = 'icons/mob/human.dmi'
|
||||||
icon_state = "caucasian_m"
|
icon_state = "caucasian_m"
|
||||||
appearance_flags = KEEP_TOGETHER|TILE_BOUND|PIXEL_SCALE
|
appearance_flags = KEEP_TOGETHER|TILE_BOUND|PIXEL_SCALE
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
/mob/living/carbon/monkey
|
/mob/living/carbon/monkey
|
||||||
name = "monkey"
|
name = "monkey"
|
||||||
voice_name = "monkey"
|
|
||||||
verb_say = "chimpers"
|
verb_say = "chimpers"
|
||||||
initial_language_holder = /datum/language_holder/monkey
|
initial_language_holder = /datum/language_holder/monkey
|
||||||
icon = 'icons/mob/monkey.dmi'
|
icon = 'icons/mob/monkey.dmi'
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
/mob/living/silicon
|
/mob/living/silicon
|
||||||
gender = NEUTER
|
gender = NEUTER
|
||||||
voice_name = "synthesized voice"
|
|
||||||
has_unlimited_silicon_privilege = 1
|
has_unlimited_silicon_privilege = 1
|
||||||
verb_say = "states"
|
verb_say = "states"
|
||||||
verb_ask = "queries"
|
verb_ask = "queries"
|
||||||
|
|||||||
@@ -35,7 +35,6 @@
|
|||||||
sight = (SEE_TURFS | SEE_OBJS)
|
sight = (SEE_TURFS | SEE_OBJS)
|
||||||
status_flags = (CANPUSH | CANSTUN | CANKNOCKDOWN)
|
status_flags = (CANPUSH | CANSTUN | CANKNOCKDOWN)
|
||||||
gender = NEUTER
|
gender = NEUTER
|
||||||
voice_name = "synthesized chirp"
|
|
||||||
speak_emote = list("chirps")
|
speak_emote = list("chirps")
|
||||||
bubble_icon = "machine"
|
bubble_icon = "machine"
|
||||||
initial_language_holder = /datum/language_holder/drone
|
initial_language_holder = /datum/language_holder/drone
|
||||||
|
|||||||
@@ -28,8 +28,6 @@
|
|||||||
var/lastattackerckey = null
|
var/lastattackerckey = null
|
||||||
var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG)
|
var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG)
|
||||||
var/obj/machinery/machine = null
|
var/obj/machinery/machine = null
|
||||||
var/other_mobs = null
|
|
||||||
|
|
||||||
|
|
||||||
var/next_move = null
|
var/next_move = null
|
||||||
var/notransform = null //Carbon
|
var/notransform = null //Carbon
|
||||||
@@ -87,14 +85,10 @@
|
|||||||
|
|
||||||
var/in_throw_mode = 0
|
var/in_throw_mode = 0
|
||||||
|
|
||||||
var/music_lastplayed = "null"
|
|
||||||
|
|
||||||
var/job = null//Living
|
var/job = null//Living
|
||||||
|
|
||||||
var/radiation = 0//Carbon
|
var/radiation = 0//Carbon
|
||||||
|
|
||||||
var/voice_name = "unidentifiable voice"
|
|
||||||
|
|
||||||
var/list/faction = list("neutral") //A list of factions that this mob is currently in, for hostile mob targetting, amongst other things
|
var/list/faction = list("neutral") //A list of factions that this mob is currently in, for hostile mob targetting, amongst other things
|
||||||
var/move_on_shuttle = 1 // Can move on the shuttle.
|
var/move_on_shuttle = 1 // Can move on the shuttle.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user