diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
index 30cd2f9279..8a3b7c560b 100644
--- a/code/controllers/configuration.dm
+++ b/code/controllers/configuration.dm
@@ -232,15 +232,11 @@ var/list/gamemode_cache = list()
var/static/dooc_allowed = 1
var/static/dsay_allowed = 1
-<<<<<<< HEAD
- var/static/starlight = 0 // Whether space turfs have ambient light or not
-=======
var/allow_byond_links = 0
var/allow_discord_links = 0
var/allow_url_links = 0 // honestly if I were you i'd leave this one off, only use in dire situations
var/starlight = 0 // Whether space turfs have ambient light or not
->>>>>>> 3fbc72a... Merge pull request #7206 from GeneriedJenelle/patch-1
var/static/list/ert_species = list(SPECIES_HUMAN)
diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm
index c408cc54aa..4ee0213f8f 100644
--- a/code/game/verbs/ooc.dm
+++ b/code/game/verbs/ooc.dm
@@ -34,13 +34,11 @@
log_admin("[key_name(src)] has attempted to advertise in OOC: [msg]")
message_admins("[key_name_admin(src)] has attempted to advertise in OOC: [msg]")
return
-<<<<<<< HEAD
//VOREStation Add - No talking during voting
if(SSvote && SSvote.mode)
to_chat(src, "OOC is not allowed during voting.")
return
//VOREStation Add End
-=======
if(findtext(msg, "discord.gg") && !config.allow_discord_links)
to_chat(src, "Advertising discords is not allowed.")
log_admin("[key_name(src)] has attempted to advertise a discord server in OOC: [msg]")
@@ -51,7 +49,6 @@
log_admin("[key_name(src)] has attempted to post a link in OOC: [msg]")
message_admins("[key_name_admin(src)] has attempted to post a link in OOC: [msg]")
return
->>>>>>> 3fbc72a... Merge pull request #7206 from GeneriedJenelle/patch-1
log_ooc(msg, src)
diff --git a/config/example/config.txt b/config/example/config.txt
index a39790d2e2..713d741b17 100644
--- a/config/example/config.txt
+++ b/config/example/config.txt
@@ -532,15 +532,12 @@ SQLITE_FEEDBACK_MIN_AGE 7
## Comment this out if you don't want to use the 'nightshift lighting' subsystem to adjust lights based on ingame time
ENABLE_NIGHT_SHIFTS
-<<<<<<< HEAD
## Comment this out to enable playtime restrictions for jobs in their respective departments (mostly for heads)
# USE_PLAYTIME_RESTRICTION_FOR_JOBS
-=======
-## OOC/LOOC control ##
+## OOC/LOOC control ##
# Uncomment to allow links of the following kinds. #
# ALLOW_BYOND_LINKS
# ALLOW_DISCORD_LINKS
ALLOW_URL_LINKS
->>>>>>> 3fbc72a... Merge pull request #7206 from GeneriedJenelle/patch-1