mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 11:58:39 +01:00
Replaces Mice w/ Rats (#6625)
This commit is contained in:
@@ -84,8 +84,8 @@ var/list/gamemode_cache = list()
|
||||
var/allow_drone_spawn = 1 //assuming the admin allow them to.
|
||||
var/drone_build_time = 1200 //A drone will become available every X ticks since last drone spawn. Default is 2 minutes.
|
||||
|
||||
var/disable_player_mice = 0
|
||||
var/uneducated_mice = 0 //Set to 1 to prevent newly-spawned mice from understanding human speech
|
||||
var/disable_player_rats = 0
|
||||
var/uneducated_rats = 0 //Set to 1 to prevent newly-spawned mice from understanding human speech
|
||||
|
||||
var/usealienwhitelist = 0
|
||||
var/limitalienplayers = 0
|
||||
@@ -479,7 +479,7 @@ var/list/gamemode_cache = list()
|
||||
|
||||
if ("respawn_delay")
|
||||
config.respawn_delay = text2num(value)
|
||||
|
||||
|
||||
if("hacked_drones_limit")
|
||||
config.hacked_drones_limit = text2num(value)
|
||||
|
||||
@@ -686,11 +686,11 @@ var/list/gamemode_cache = list()
|
||||
if("nl_finish_hour")
|
||||
config.nl_finish = text2num(value)
|
||||
|
||||
if("disable_player_mice")
|
||||
config.disable_player_mice = 1
|
||||
if("disable_player_rats")
|
||||
config.disable_player_rats = 1
|
||||
|
||||
if("uneducated_mice")
|
||||
config.uneducated_mice = 1
|
||||
if("uneducated_rats")
|
||||
config.uneducated_rats = 1
|
||||
|
||||
if("use_discord_pins")
|
||||
config.use_discord_pins = 1
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
var/list/slept = list()
|
||||
|
||||
var/list/currentrun = list()
|
||||
var/list/all_mice = list() // Contains all *living* mice.
|
||||
var/list/all_rats = list() // Contains all *living* rats.
|
||||
var/list/mannequins = list() //Contains all mannequins used by character preview
|
||||
var/list/greatworms = list()
|
||||
var/list/greatasses = list()
|
||||
|
||||
@@ -42,7 +42,7 @@ var/datum/controller/subsystem/traumas/SStraumas
|
||||
"lizards" = typecacheof(list(/mob/living/simple_animal/lizard)),
|
||||
"cats" = typecacheof(list(/mob/living/simple_animal/cat, /mob/living/simple_animal/familiar/pet/cat, /mob/living/simple_animal/cat/kitten)),
|
||||
"robots" = typecacheof(list(/mob/living/silicon,/mob/living/bot, /mob/living/simple_animal/hostile/retaliate/malf_drone)),
|
||||
"pests" = typecacheof(list(/mob/living/simple_animal/hostile/carp, /mob/living/simple_animal/mouse, /mob/living/carbon/alien/diona)),
|
||||
"pests" = typecacheof(list(/mob/living/simple_animal/hostile/carp, /mob/living/simple_animal/rat, /mob/living/carbon/alien/diona)),
|
||||
"paranormals" = typecacheof(list(/mob/living/simple_animal/hostile/scarybat, /mob/living/simple_animal/hostile/true_changeling,
|
||||
/mob/living/simple_animal/hostile/mimic, /mob/living/simple_animal/hostile/faithless,
|
||||
/mob/living/simple_animal/construct)),
|
||||
|
||||
Reference in New Issue
Block a user