From 753633f2ad8f261d71c215bf40c554fdfe5a9884 Mon Sep 17 00:00:00 2001 From: staphen Date: Sun, 23 Jun 2024 18:07:39 -0400 Subject: [PATCH] Don't validate items in Single Player --- Source/msg.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/msg.cpp b/Source/msg.cpp index 954aab2ee..17b09942e 100644 --- a/Source/msg.cpp +++ b/Source/msg.cpp @@ -1027,6 +1027,9 @@ bool IsGItemValid(const TCmdGItem &message) bool IsPItemValid(const TCmdPItem &message, const Player &player) { + if (!gbIsMultiplayer) + return true; + const Point position { message.x, message.y }; if (!InDungeonBounds(position))