From 05a243267359f2626a5595e5bc73e095bf990e53 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 24 Oct 2008 21:55:37 +0000 Subject: [PATCH] safe to make this the default now --- direct/src/task/Task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/task/Task.py b/direct/src/task/Task.py index 8b80c37c96..ab5a3c4d16 100644 --- a/direct/src/task/Task.py +++ b/direct/src/task/Task.py @@ -3,7 +3,7 @@ TaskOrig.py, the original Python implementation of the task system, and TaskNew.py, the new C++ implementation. """ from pandac.libpandaexpressModules import ConfigVariableBool -wantNewTasks = ConfigVariableBool('want-new-tasks', False).getValue() +wantNewTasks = ConfigVariableBool('want-new-tasks', True).getValue() if wantNewTasks: from TaskNew import *