diff --git a/code/modules/antagonists/changeling/changeling_power.dm b/code/modules/antagonists/changeling/changeling_power.dm
index 282b6b6f1e..92c8a3c069 100644
--- a/code/modules/antagonists/changeling/changeling_power.dm
+++ b/code/modules/antagonists/changeling/changeling_power.dm
@@ -1,83 +1,3 @@
-<<<<<<< HEAD
-/*
- * Don't use the apostrophe in name or desc. Causes script errors.
- * TODO: combine atleast some of the functionality with /proc_holder/spell
- */
-
-/obj/effect/proc_holder/changeling
- panel = "Changeling"
- name = "Prototype Sting"
- desc = "" // Fluff
- var/helptext = "" // Details
- var/chemical_cost = 0 // negative chemical cost is for passive abilities (chemical glands)
- var/dna_cost = -1 //cost of the sting in dna points. 0 = auto-purchase, -1 = cannot be purchased
- var/req_dna = 0 //amount of dna needed to use this ability. Changelings always have atleast 1
- var/req_human = 0 //if you need to be human to use this ability
- var/req_stat = CONSCIOUS // CONSCIOUS, UNCONSCIOUS or DEAD
- var/always_keep = 0 // important for abilities like revive that screw you if you lose them.
- var/ignores_fakedeath = FALSE // usable with the FAKEDEATH flag
-
-
-/obj/effect/proc_holder/changeling/proc/on_purchase(mob/user, is_respec)
- if(!is_respec)
- SSblackbox.record_feedback("tally", "changeling_power_purchase", 1, name)
-
-/obj/effect/proc_holder/changeling/proc/on_refund(mob/user)
- return
-
-/obj/effect/proc_holder/changeling/Click()
- var/mob/user = usr
- if(!user || !user.mind || !user.mind.has_antag_datum(/datum/antagonist/changeling))
- return
- try_to_sting(user)
-
-/obj/effect/proc_holder/changeling/proc/try_to_sting(mob/user, mob/target)
- if(!can_sting(user, target))
- return
- var/datum/antagonist/changeling/c = user.mind.has_antag_datum(/datum/antagonist/changeling)
- if(sting_action(user, target))
- SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]"))
- sting_feedback(user, target)
- c.chem_charges -= chemical_cost
-
-/obj/effect/proc_holder/changeling/proc/sting_action(mob/user, mob/target)
- return 0
-
-/obj/effect/proc_holder/changeling/proc/sting_feedback(mob/user, mob/target)
- return 0
-
-//Fairly important to remember to return 1 on success >.<
-/obj/effect/proc_holder/changeling/proc/can_sting(mob/living/user, mob/target)
- if(!ishuman(user) && !ismonkey(user)) //typecast everything from mob to carbon from this point onwards
- return 0
- if(req_human && !ishuman(user))
- to_chat(user, "We cannot do that in this form!")
- return 0
- var/datum/antagonist/changeling/c = user.mind.has_antag_datum(/datum/antagonist/changeling)
- if(c.chem_charges < chemical_cost)
- to_chat(user, "We require at least [chemical_cost] unit\s of chemicals to do that!")
- return 0
- if(c.absorbedcount < req_dna)
- to_chat(user, "We require at least [req_dna] sample\s of compatible DNA.")
- return 0
- if(req_stat < user.stat)
- to_chat(user, "We are incapacitated.")
- return 0
- if((user.has_trait(TRAIT_FAKEDEATH)) && (!ignores_fakedeath))
- to_chat(user, "We are incapacitated.")
- return 0
- return 1
-
-//used in /mob/Stat()
-/obj/effect/proc_holder/changeling/proc/can_be_used_by(mob/user)
- if(!user || QDELETED(user))
- return 0
- if(!ishuman(user) && !ismonkey(user))
- return 0
- if(req_human && !ishuman(user))
- return 0
- return 1
-=======
/*
* Don't use the apostrophe in name or desc. Causes script errors.
* TODO: combine atleast some of the functionality with /proc_holder/spell
@@ -159,4 +79,3 @@
if(req_human && !ishuman(user))
return 0
return 1
->>>>>>> bcf568f... adds new changeling var that counts actual absorbs, uses it for Spiders ability (#37081)