mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-26 10:02:28 +00:00
Fix two bugs this time. (#5354)
-fixes #5348 -fixes the chocolate box having broken sprites
This commit is contained in:
@@ -299,7 +299,7 @@
|
||||
/obj/item/weapon/storage/fancy/chocolate_box
|
||||
icon = 'icons/obj/chocolate.dmi'
|
||||
icon_state = "chocolatebox"
|
||||
icon_type = "chocolatebox"
|
||||
icon_type = "chocolate"
|
||||
name = "chocolate box"
|
||||
storage_slots = 8
|
||||
can_hold = list(
|
||||
|
||||
@@ -27,7 +27,7 @@ calculate text size per text.
|
||||
for(var/datum/reagent/R in reagent_list)
|
||||
if(!R.taste_mult)
|
||||
continue
|
||||
if(R.id == "nutriment") //this is ugly but apparently only nutriment (not subtypes) has taste data TODO figure out why
|
||||
if(R.id == "nutriment" || R.id == "synnutriment") //this is ugly but apparently only nutriment (not subtypes) has taste data TODO figure out why
|
||||
var/list/taste_data = R.get_data()
|
||||
for(var/taste in taste_data)
|
||||
if(taste in tastes)
|
||||
|
||||
Reference in New Issue
Block a user