From 1f1ceade8cd73b3f5f4c26f7a078ed2a52b73ae0 Mon Sep 17 00:00:00 2001 From: 3HMonkey Date: Mon, 20 Jan 2020 09:51:53 +0100 Subject: [PATCH] Sign parser fix (#81) --- Projects/Scripts/Commands/SignParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Scripts/Commands/SignParser.cs b/Projects/Scripts/Commands/SignParser.cs index 66176541b..0eaf271b3 100644 --- a/Projects/Scripts/Commands/SignParser.cs +++ b/Projects/Scripts/Commands/SignParser.cs @@ -69,7 +69,7 @@ namespace Server.Commands _ => null }; - for (int j = 0; maps?.Length >= j; ++j) + for (int j = 0; maps?.Length > j; ++j) Add_Static(e.m_ItemID, e.m_Location, maps[j], e.m_Text); }