Index: TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Animal.openapi.yaml
===================================================================
--- TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Animal.openapi.yaml	(revision 459)
+++ TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Animal.openapi.yaml	(revision 459)
@@ -0,0 +1,58 @@
+openapi: 3.1.0
+info:
+  title: Animal
+  version: 1
+
+components:
+  schemas:
+    AnimalElement:
+      type: object
+      properties:
+        id:
+          $ref: '#/components/schemas/TypeEntityId'
+        name:
+          type: string
+          examples:
+            - animalStag
+        position:
+          $ref: '#/components/schemas/TypeVector3i'
+      required:
+        - id
+        - name
+        - position
+
+    AnimalList:
+      type: array
+      items:
+        $ref: '#/components/schemas/AnimalElement'
+
+
+paths:
+  /api/animal:
+    get:
+      tags:
+        - WorldState
+      summary: Animals list
+      description: Fetch a list of the currently spawned animals in the world
+      operationId: animal.get
+      responses:
+        200:
+          description: List of animals
+          content:
+            application/json:
+              schema:
+                type: object
+                properties:
+                  data:
+                    $ref: '#/components/schemas/AnimalList'
+                  meta:
+                    $ref: '#/components/schemas/ResultEnvelopeMeta'
+                required:
+                  - data
+                  - meta
+        403:
+          $ref: '#/components/responses/Unauthorized'
+      security:
+        - apiTokenName: []
+          apiTokenSecret: []
+        - sessionCookie: []
Index: TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Player.cs
===================================================================
--- TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Player.cs	(revision 444)
+++ TFP-WebServer/WebServer/src/WebAPI/APIs/WorldState/Player.cs	(revision 459)
@@ -93,5 +93,5 @@
 			ClientInfo ci = ConnectionManager.Instance.Clients.ForUserId (_nativeUserId);
 			if (ci == null) {
-				global::Log.Warning ($"[Web] Player.GET: ClientInfo null");
+				Log.Warning ($"[Web] Player.GET: ClientInfo null");
 				return;
 			}
@@ -101,5 +101,5 @@
 
 			if (entity == null) {
-				global::Log.Warning ($"[Web] Player.GET: EntityPlayer null");
+				Log.Warning ($"[Web] Player.GET: EntityPlayer null");
 				return;
 			}
