From ed874e3235cb910b63fc7daebb403ea02fb9022d Mon Sep 17 00:00:00 2001
From: NovaBot <154629622+NovaBot13@users.noreply.github.com>
Date: Sun, 14 Apr 2024 19:38:14 -0400
Subject: [PATCH] [MIRROR] [READY] MASSIVE CRAYON BUFF (GAME-CHANGING) (MUST
 MERGE) (#1984)

* [READY] MASSIVE CRAYON BUFF (GAME-CHANGING) (MUST MERGE) (#82638)

## About The Pull Request

You can now type up to 4 letters on a tile at once, one for each corner
of the tile, an ability lost when max interactions was added.

![image](https://github.com/tgstation/tgstation/assets/53777086/9f9a2b80-5777-4490-acee-33e3df2d4c5a)

## Why It's Good For The Game

Currently if you're typing on the floor with a crayon, you either spend
a million years going letter by letter, or do the alternative of typing
every second letter to write on 3 tiles at once, and repeat, which is
stupid that we even have to do that.

## Changelog

:cl:
qol: Crayons can now draw up to 4 letters at a time per tile.
/:cl:

* [READY] MASSIVE CRAYON BUFF (GAME-CHANGING) (MUST MERGE)

---------

Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com>
---
 code/game/objects/items/crayons.dm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm
index a081e5248aa..bed10142d72 100644
--- a/code/game/objects/items/crayons.dm
+++ b/code/game/objects/items/crayons.dm
@@ -512,7 +512,7 @@
 	if(istagger)
 		wait_time *= 0.5
 
-	if(!instant && !do_after(user, wait_time, target = target))
+	if(!instant && !do_after(user, wait_time, target = target, max_interact_count = 4))
 		return
 
 	if(!use_charges(user, cost))