From 48efd2d8b289938f5e9731f03ccade765b4b1cf0 Mon Sep 17 00:00:00 2001
From: Seris02 <49109742+Seris02@users.noreply.github.com>
Date: Mon, 28 Dec 2020 05:37:33 +0800
Subject: [PATCH] punctuation (#55753)
Fixes two punctuation errors.
---
code/modules/mob/living/carbon/inventory.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/mob/living/carbon/inventory.dm b/code/modules/mob/living/carbon/inventory.dm
index a6917d66463..396af139c9a 100644
--- a/code/modules/mob/living/carbon/inventory.dm
+++ b/code/modules/mob/living/carbon/inventory.dm
@@ -168,8 +168,8 @@
if(istype(receiving, /obj/item/slapper))
offer_high_five(receiving)
return
- visible_message("[src] is offering [receiving]", \
- "You offer [receiving]", null, 2)
+ visible_message("[src] is offering [receiving].", \
+ "You offer [receiving].", null, 2)
for(var/mob/living/carbon/C in orange(1, src)) //Fixed that, now it shouldn't be able to give benos stunbatons and IDs
if(!CanReach(C))
continue