Page 1 of 1

item_latents import.sql import error

Posted: Sun Jan 26, 2014 9:39 am
by EDGECOM
I am guessing that this is only effecting MySQL workbench from the lack of posts

if your getting import error at line 1481

then you need to change this

Code: Select all

--Koga Tekko
INSERT INTO `item_latents` VALUES(15114, 8, 12, 26, 1); -- STR +12 during nighttime
INSERT INTO `item_latents` VALUES(15114, 384, 4, 26, 1); -- Haste +%4 during nighttime
--Koga Kyahan
INSERT INTO `item_latents` VALUES(15144, 9, 7, 26, 1); -- DEX +7 during nighttime
--Ninja Kyahan
INSERT INTO `item_latents` VALUES(14101, 169, 25, 26, 1); -- %25 during nighttime
to this

Code: Select all

-- Koga Tekko
INSERT INTO `item_latents` VALUES(15114, 8, 12, 26, 1); -- STR +12 during nighttime
INSERT INTO `item_latents` VALUES(15114, 384, 4, 26, 1); -- Haste +%4 during nighttime
-- Koga Kyahan
INSERT INTO `item_latents` VALUES(15144, 9, 7, 26, 1); -- DEX +7 during nighttime
-- Ninja Kyahan
INSERT INTO `item_latents` VALUES(14101, 169, 25, 26, 1); -- %25 during nighttime
stupid I know but that's how MySQL rolls :)

Re: item_latents import.sql import error

Posted: Sun Jan 26, 2014 9:52 am
by altalus
If it is not fixed by a dev on Monday I'll create a pull request with your fixes :)

Re: item_latents import.sql import error

Posted: Sun Jan 26, 2014 2:47 pm
by kjLotus
ninja fixed it in d8c5144b6d61f5f0baabf5af65902dcb80082dc2