From 5f76cc9db8f2d72d21ac6547621c5f05f48678d3 Mon Sep 17 00:00:00 2001 From: Juris <jurchiks101@gmail.com> Date: Thu, 25 Dec 2014 15:35:40 +0200 Subject: [PATCH] Minor fix for https://github.com/L2J/L2J_DataPack/commit/dfcb404235be38beda10d38644243b1a8fa9d73f, I forgot that player variables are not stored in quest table. Sorry about that. --- L2J_DataPack/dist/sql/game/updates/20141224update.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L2J_DataPack/dist/sql/game/updates/20141224update.sql b/L2J_DataPack/dist/sql/game/updates/20141224update.sql index 7a591cea80..db1587b66d 100644 --- a/L2J_DataPack/dist/sql/game/updates/20141224update.sql +++ b/L2J_DataPack/dist/sql/game/updates/20141224update.sql @@ -1 +1 @@ -UPDATE `character_quests` SET `value` = '1' WHERE `var` = '2ND_CLASS_DIAMOND_REWARD' AND `value` = 'true'; \ No newline at end of file +UPDATE `character_variables` SET `val` = '1' WHERE `var` = '2ND_CLASS_DIAMOND_REWARD' AND `val` = 'true'; \ No newline at end of file -- GitLab