mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-13 16:13:49 +01:00
Merge branch 'master' into Arokha/matdefs
This commit is contained in:
@@ -461,9 +461,9 @@
|
||||
if(damage_desc)
|
||||
if(user == src.owner)
|
||||
var/datum/gender/T = gender_datums[user.get_visible_gender()]
|
||||
user.visible_message("<span class='notice'>\The [user] patches [damage_desc] on [T.his] [src.name] with [tool].</span>")
|
||||
user.visible_message("<b>\The [user]</b> patches [damage_desc] on [T.his] [src.name] with [tool].")
|
||||
else
|
||||
user.visible_message("<span class='notice'>\The [user] patches [damage_desc] on [owner]'s [src.name] with [tool].</span>")
|
||||
user.visible_message("<b>\The [user]</b> patches [damage_desc] on [owner]'s [src.name] with [tool].")
|
||||
|
||||
return 1
|
||||
|
||||
|
||||
@@ -131,6 +131,15 @@ var/global/list/limb_icon_cache = list()
|
||||
I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit
|
||||
limb_icon_cache[cache_key] = I
|
||||
mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY)
|
||||
|
||||
// VOREStation edit start
|
||||
if(nail_polish)
|
||||
var/icon/I = new(nail_polish.icon, nail_polish.icon_state)
|
||||
I.Blend(nail_polish.color, ICON_MULTIPLY)
|
||||
add_overlay(I)
|
||||
mob_icon.Blend(I, ICON_OVERLAY)
|
||||
icon_cache_key += "_[nail_polish.icon]_[nail_polish.icon_state]_[nail_polish.color]"
|
||||
// VOREStation edit end
|
||||
|
||||
if(model)
|
||||
icon_cache_key += "_model_[model]"
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
/obj/item/organ/internal/heart/grey/colormatch/slime/process()
|
||||
..()
|
||||
if(!(QDELETED(src)) && src.loc != owner)
|
||||
visible_message("<span class='notice'>\The [src] splatters!</span>")
|
||||
visible_message("<b>\The [src]</b> splatters!")
|
||||
var/turf/T = get_turf(src)
|
||||
var/obj/effect/decal/cleanable/blood/B = new (T)
|
||||
|
||||
@@ -120,7 +120,7 @@
|
||||
..()
|
||||
|
||||
if(!(QDELETED(src)) && src.loc != owner)
|
||||
visible_message("<span class='notice'>\The [src] splatters!</span>")
|
||||
visible_message("<b>\The [src]</b> splatters!")
|
||||
var/turf/T = get_turf(src)
|
||||
var/obj/effect/decal/cleanable/blood/B = new (T)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user