From 059043fea94252f3e118b34868a19239681bcd56 Mon Sep 17 00:00:00 2001 From: Koncord Date: Thu, 23 Feb 2017 15:16:28 +0800 Subject: [PATCH] [General] Change signature of BaseEvent::action --- components/openmw-mp/Base/BaseEvent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/openmw-mp/Base/BaseEvent.hpp b/components/openmw-mp/Base/BaseEvent.hpp index 7ef655d84..54d6484fc 100644 --- a/components/openmw-mp/Base/BaseEvent.hpp +++ b/components/openmw-mp/Base/BaseEvent.hpp @@ -87,7 +87,7 @@ namespace mwmp ESM::Cell cell; - int action; // 0 - Clear and set in entirety, 1 - Add item, 2 - Remove item, 3 - Request items + unsigned char action; // 0 - Clear and set in entirety, 1 - Add item, 2 - Remove item, 3 - Request items }; }