Browse Source

safe to make this the default now

David Rose 17 years ago
parent
commit
05a2432673
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/task/Task.py

+ 1 - 1
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 *