mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* rulesets/basic/mind/goals/common/common.py, rulesets/basic/mind/goals/common/move.py, rulesets/basic/mind/goals/humanoid/build_home.py, rulesets/basic/mind/goals/humanoid/fire.py, rulesets/basic/mind/goals/humanoid/mason.py, rulesets/basic/mind/goals/humanoid/transaction.py: Clean up the way goals are imported so it makes more sense, and doxygen has an easier time with it.
10 lines
235 B
Python
10 lines
235 B
Python
#This file is distributed under the terms of the GNU General Public license.
|
|
#Copyright (C) 1999 Aloril (See the file COPYING for details).
|
|
|
|
from mind.NPCMind import *
|
|
|
|
#goals for minds
|
|
|
|
def false(me): return 0
|
|
def true(me): return 1
|
|
|