diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index 3764ae62587..94c45e502e6 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -201,9 +201,12 @@
/obj/proc/is_safe_to_step(mob/living/L)
return TRUE
+<<<<<<< HEAD
/obj/proc/container_resist(var/mob/living)
return
+=======
+>>>>>>> 656cbe7... Merge pull request #7190 from VOREStation/Arokha/janicart
//To be called from things that spill objects on the floor.
//Makes an object move around randomly for a couple of tiles
/obj/proc/tumble(var/dist = 2)
diff --git a/code/game/objects/structures/janicart.dm b/code/game/objects/structures/janicart.dm
index 69164019368..e0c86d5371e 100644
--- a/code/game/objects/structures/janicart.dm
+++ b/code/game/objects/structures/janicart.dm
@@ -3,6 +3,7 @@ GLOBAL_LIST_BOILERPLATE(all_janitorial_carts, /obj/structure/janitorialcart)
/obj/structure/janitorialcart
name = "janitorial cart"
desc = "The ultimate in janitorial carts! Has space for water, mops, signs, trash bags, and more!"
+ description_info = "You can use alt-click while holding a mop to stow the mop. Alt-click holding a reagent container will empty the contents into the bucket without trying to put the container in any attached trash bag."
icon = 'icons/obj/janitor.dmi'
icon_state = "cart"
anchored = 0
@@ -56,7 +57,11 @@ GLOBAL_LIST_BOILERPLATE(all_janitorial_carts, /obj/structure/janitorialcart)
else
mybucket.reagents.trans_to_obj(I, 5) //
to_chat(user, "You wet [I] in [mybucket].")
+<<<<<<< HEAD
playsound(src, 'sound/effects/slosh.ogg', 25, 1)
+=======
+ playsound(loc, 'sound/effects/slosh.ogg', 25, 1)
+>>>>>>> 656cbe7... Merge pull request #7190 from VOREStation/Arokha/janicart
else
to_chat(user, "[I] can't absorb anymore liquid!")
else
diff --git a/html/changelogs/arokha-janicart.yml b/html/changelogs/arokha-janicart.yml
new file mode 100644
index 00000000000..9caf37fab84
--- /dev/null
+++ b/html/changelogs/arokha-janicart.yml
@@ -0,0 +1,37 @@
+################################
+# Example Changelog File
+#
+# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
+#
+# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
+# When it is, any changes listed below will disappear.
+#
+# Valid Prefixes:
+# bugfix
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# maptweak
+# spellcheck (typo fixes)
+# experiment
+#################################
+
+# Your name.
+author: Arokha
+
+# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+delete-after: True
+
+# Any changes you've made. See valid prefix list above.
+# INDENT WITH TWO SPACES. NOT TABS. SPACES.
+# SCREW THIS UP AND IT WON'T WORK.
+# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
+# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - rscadd: "New sprites for janicart"
+ - tweak: "Alt-click helpers for stowing mop, chemicals on janicart"