diff --git a/.gitignore b/.gitignore index cf76a2317..cba39f251 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ config.log *.sconf_temp *.gch *.pyc +site_scons/site_tools/mfprogram/*.pyc +site_scons/site_tools/gch/*.pyc \ No newline at end of file diff --git a/src/PowderToySDL.cpp b/src/PowderToySDL.cpp index 3b8aeab6d..0a331f51d 100644 --- a/src/PowderToySDL.cpp +++ b/src/PowderToySDL.cpp @@ -531,7 +531,7 @@ int main(int argc, char * argv[]) engine->Tick(); engine->Draw(); - if(SDL_GetTicks()-lastTick>500) + if(SDL_GetTicks()-lastTick>250) { //Run client tick every second lastTick = SDL_GetTicks();