Sign parser fix (#81)

This commit is contained in:
3HMonkey 2020-01-20 09:51:53 +01:00 committed by Kamron Batman
parent de74218b89
commit 1f1ceade8c

View file

@ -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);
}