mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
Merge pull request #6537 from VOREStation/sundry-fixes-feb
Sundry Bugfixes - Feburary
This commit is contained in:
@@ -69,6 +69,7 @@
|
||||
icon_dead = "measelshark-dead"
|
||||
meat_amount = 6 //Big fish, tons of meat. Great for feasts.
|
||||
meat_type = /obj/item/weapon/reagent_containers/food/snacks/sliceable/sharkchunk
|
||||
vore_active = 1
|
||||
vore_bump_chance = 100
|
||||
vore_default_mode = DM_HOLD //docile shark
|
||||
vore_capacity = 5
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
/datum/preferences/update_preview_icon() // Lines up and un-overlaps character edit previews. Also un-splits taurs.
|
||||
var/mob/living/carbon/human/dummy/mannequin/mannequin = get_mannequin(client_ckey)
|
||||
if(!mannequin.dna) // Special handling for preview icons before SSAtoms has initailized.
|
||||
mannequin.dna = new /datum/dna(null)
|
||||
mannequin.delete_inventory(TRUE)
|
||||
dress_preview_mob(mannequin)
|
||||
COMPILE_OVERLAYS(mannequin)
|
||||
|
||||
@@ -425,7 +425,7 @@
|
||||
/mob/living/proc/perform_the_nom(var/mob/living/user, var/mob/living/prey, var/mob/living/pred, var/obj/belly/belly, var/delay)
|
||||
//Sanity
|
||||
if(!user || !prey || !pred || !istype(belly) || !(belly in pred.vore_organs))
|
||||
log_debug("[user] attempted to feed [prey] to [pred], via [lowertext(belly.name)] but it went wrong.")
|
||||
log_debug("[user] attempted to feed [prey] to [pred], via [belly ? lowertext(belly.name) : "*null*"] but it went wrong.")
|
||||
return
|
||||
|
||||
// The belly selected at the time of noms
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
/area/awaymission/labyrinth/temple
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
/area/awaymission/labyrinth/temple/entry
|
||||
icon_state = "chapel"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
/area/awaymission/snowfield/base
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
// -- Mobs -- //
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
/area/awaymission/snowfield/base
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
// -- Mobs -- //
|
||||
|
||||
|
||||
Reference in New Issue
Block a user