From 67ce6cdab3ea0c1895f700665e79f9910b14760a Mon Sep 17 00:00:00 2001 From: yunusemrealtug Date: Tue, 26 Dec 2023 20:25:48 +0300 Subject: [PATCH] fixed entity tab bug --- ludos/frontend/src/components/EntityTab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ludos/frontend/src/components/EntityTab.js b/ludos/frontend/src/components/EntityTab.js index 56f87fee..497c99df 100644 --- a/ludos/frontend/src/components/EntityTab.js +++ b/ludos/frontend/src/components/EntityTab.js @@ -29,7 +29,7 @@ function EntityTab(data) { chars.push(entity); } else if (entity.type === "item") { its.push(entity); - } else if (entity.type === "area") { + } else if (entity.type === "environment") { ars.push(entity); } else if (entity.type === "package") { pcks.push(entity);