From d4a84ac34a6781947a3388d3f9398548e9a5c120 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Sun, 22 Jul 2018 23:08:32 +0300 Subject: [PATCH] [Server] Update script function descriptions for ObjectList origin --- apps/openmw-mp/Script/Functions/Objects.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/openmw-mp/Script/Functions/Objects.hpp b/apps/openmw-mp/Script/Functions/Objects.hpp index c8aa2dba8..87c05d2d5 100644 --- a/apps/openmw-mp/Script/Functions/Objects.hpp +++ b/apps/openmw-mp/Script/Functions/Objects.hpp @@ -175,13 +175,17 @@ public: /** * \brief Get the origin of the read object list. * - * \return The origin (0 for GAMEPLAY, 1 for CONSOLE, 2 for CLIENT_SCRIPT). + * \return The origin (0 for CLIENT_GAMEPLAY, 1 for CLIENT_CONSOLE, 2 for + * CLIENT_DIALOGUE, 3 for CLIENT_SCRIPT_LOCAL, 4 for CLIENT_SCRIPT_GLOBAL, + * 5 for SERVER_SCRIPT). */ static unsigned char GetObjectListOrigin() noexcept; /** * \brief Get the client script that the read object list originated from. * + * Note: This is not yet implemented. + * * \return The ID of the client script. */ static const char *GetObjectListClientScript() noexcept;