diff --git a/code/modules/reagents/newchem/other.dm b/code/modules/reagents/newchem/other.dm
index 268f7a80eac..4fbaffadd43 100644
--- a/code/modules/reagents/newchem/other.dm
+++ b/code/modules/reagents/newchem/other.dm
@@ -319,6 +319,20 @@ datum/reagent/fartonium/on_mob_life(var/mob/living/M as mob)
new /obj/item/weapon/soap/homemade(location)
return
+/datum/chemical_reaction/candlefication
+ name = "Candlefication"
+ id = "candlefication"
+ result = null
+ required_reagents = list("liquidgibs" = 5, "oxygen" = 5) //
+ min_temp = 374
+ result_amount = 1
+
+/datum/chemical_reaction/candlefication/on_reaction(datum/reagents/holder, created_volume)
+ var/location = get_turf(holder.my_atom)
+ new /obj/item/candle(location)
+ return
+
+
/datum/chemical_reaction/meatification
name = "Meatification"
id = "meatification"
diff --git a/code/modules/virus2/effect.dm b/code/modules/virus2/effect.dm
index 0b6ac6260fb..9aeea0dfd81 100644
--- a/code/modules/virus2/effect.dm
+++ b/code/modules/virus2/effect.dm
@@ -956,7 +956,7 @@ var/list/compatible_mobs = list(/mob/living/carbon/human)
/datum/disease2/effect/anxiety
name = "Severe Anxiety"
- stage = 1
+ stage = 2
activate(var/mob/living/carbon/mob,var/multiplier)
if(prob(20))
mob << "You feel anxious."
@@ -975,7 +975,7 @@ var/list/compatible_mobs = list(/mob/living/carbon/human)
/datum/disease2/effect/lycan
name = "Lycancoughy"
- stage = 1
+ stage = 3
activate(var/mob/living/carbon/mob,var/multiplier)
if(prob(20))
mob << "You feel itchy."