https://www.icyphoenix.com/viewtopic.php?f=1&t=6730&p=48831#p48831
-----------------------------------
spydie
Tue 27 Apr, 2010 19:56

Re: New Plugins System
-----------------------------------
Bug in activity mod. 

trying to install Activity mod ( found in extras ) , i got the first error.

[quote]unable to drop table `ina_last_playtype`,[/quote]

amod is trying to drop tables before install. 

problem was here:
[code linenumbers=false]if ($mode == "upgrading" || $mode == "fresh_install" || $mode == 'remove')
		{
		if (($mode == "fresh_install" || $mode == "remove") && ($mode != "upgrading"))[/code]

i solved it this way:
[code linenumbers=false]if ($mode == "upgrading" || $mode == "fresh_install" || $mode == 'remove')
		{
		if (($mode == "remove") && ($mode != "upgrading"))[/code]

[hr]

second problem:

after successful install off amod, I bunch installed the gamespack, created a test cat, and trying to assign a game to this Cat, the next surprise: In the dropdown list I only had amod root files listed.


