Merge pull request #7981 from MistakeNot4892/cleanup

Minor cleanup.
This commit is contained in:
Atermonera
2021-03-18 04:54:44 -04:00
committed by VirgoBot
parent a62bf99795
commit f498137dda
4 changed files with 2 additions and 10 deletions
-6
View File
@@ -160,12 +160,6 @@
#define FLASH_PROTECTION_MODERATE 1
#define FLASH_PROTECTION_MAJOR 2
#define ANIMAL_SPAWN_DELAY round(config.respawn_delay / 6)
#define DRONE_SPAWN_DELAY round(config.respawn_delay / 3)
#define ANIMAL_SPAWN_DELAY round(config.respawn_delay / 6)
#define DRONE_SPAWN_DELAY round(config.respawn_delay / 3)
// Incapacitation flags, used by the mob/proc/incapacitated() proc
#define INCAPACITATION_RESTRAINED 1
#define INCAPACITATION_BUCKLED_PARTIALLY 2
-3
View File
@@ -4724,9 +4724,6 @@
/mob/living/simple_mob
var/kitchen_tag = "animal" //Used for cooking with animals
/mob/living/simple_mob/mouse
kitchen_tag = "rodent"
/obj/item/weapon/reagent_containers/food/snacks/sliceable/cheesewheel
slices_num = 8
@@ -7,6 +7,7 @@
item_state = "mouse_gray"
icon_living = "mouse_gray"
icon_dead = "mouse_gray_dead"
kitchen_tag = "rodent"
maxHealth = 5
health = 5
+1 -1
View File
@@ -61,7 +61,7 @@ GLOBAL_DATUM_INIT(tgui_default_state, /datum/tgui_state/default, new)
return STATUS_CLOSE
/mob/living/simple_animal/default_can_use_tgui_topic(src_object)
/mob/living/simple_mob/default_can_use_tgui_topic(src_object)
. = shared_tgui_interaction(src_object)
if(. > STATUS_CLOSE)
. = min(., shared_living_tgui_distance(src_object)) //simple animals can only use things they're near.