Results: 1Comments by: Aleadis
File: Farm Manager10/18/21
Re: Mod broken as of update 31
Posted By: Aleadis
I had this issue. I found the error to be on line 108 in the FarmManager.Lua file The line in the current release is: if count > 1 then actualArgs = actualArgs.." " end The line should be (note the missing = sign in "count >= 1") if count >= 1 then actualArgs = actualArgs.." " end I also encountered an error with the cur...