diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 8983485c..d3047c03 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -47,7 +47,7 @@ if(istype(H.ears, /obj/item/radio/headset)) msg = "You hear something crackle in your ears for a moment before a voice speaks. \"Please stand by for a message from Central Command. Message as follows: Item request received. Your package is inbound, please stand back from the landing site. Message ends.\"" to_chat(M, msg) - new /obj/effect/DPtarget(get_turf(src), pod) + new /obj/effect/abstract/DPtarget(get_turf(src), pod) /obj/item/caution desc = "Caution! Wet Floor!" diff --git a/code/modules/food_and_drinks/food/snacks_bread.dm b/code/modules/food_and_drinks/food/snacks_bread.dm index a57adde2..f756b634 100644 --- a/code/modules/food_and_drinks/food/snacks_bread.dm +++ b/code/modules/food_and_drinks/food/snacks_bread.dm @@ -319,7 +319,7 @@ GLOBAL_LIST_INIT(frying_bad_chems, list( /obj/item/reagent_containers/food/snacks/store/bread/tumor_bread name = "dead tumor bread" - desc = "It's still within its expiration date, right?." + desc = "It's still within its expiration date, right?" icon_state = "tumorbread" slice_path = /obj/item/reagent_containers/food/snacks/breadslice/tumor_bread list_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/toxin = 10) diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 2d638a06..f8e799e5 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -303,7 +303,7 @@ /mob/living/simple_animal/proc/drop_loot() if(loot.len) for(var/i in loot) - new i(loc, dir = src.dir) + new i(loc) /mob/living/simple_animal/death(gibbed) movement_type &= ~FLYING