From b23f5eec5d943432868e92a0c8a51b0da38c4ccd Mon Sep 17 00:00:00 2001 From: El Gato da Great Date: Fri, 3 Jul 2020 12:21:25 -0500 Subject: [PATCH] added call to save datastore when outfits are saved. (#24) --- server/main.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/server/main.lua b/server/main.lua index b2b476f6..9ae3754b 100644 --- a/server/main.lua +++ b/server/main.lua @@ -19,6 +19,7 @@ AddEventHandler('esx_clotheshop:saveOutfit', function(label, skin) }) store.set('dressing', dressing) + store.save() end) end)