Commit 65e8b9dc authored by Szefo09's avatar Szefo09

makeAutoPicDownload On by default

parent ef14e19f
......@@ -190,7 +190,7 @@ public class GameTextureManager
public static Texture2D phase = null;
public static bool AutoPicDownload=true;
public static bool AutoPicDownload;
public static Texture2D rs = null;
......
......@@ -52,7 +52,7 @@ public class Setting : WindowServant2D
{
if (collection[i].name.Length > 0 && collection[i].name[0] == '*')
{
if (collection[i].name == "*mouseParticle" || collection[i].name == "*showOff" || collection[i].name == "*Efield")
if (collection[i].name == "*mouseParticle" || collection[i].name == "*showOff" || collection[i].name == "*Efield" || collection[i].name == "*AutoPicDownload")
{
collection[i].value = UIHelper.fromStringToBool(Config.Get(collection[i].name, "1"));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment