mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
12 lines
240 B
Python
12 lines
240 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
|