diff behaviours/player.py @ 34:12071706020f

Fixed error in setting the initial state of the NPC behaviour
author KarstenBock@gmx.net
date Mon, 05 Sep 2011 14:14:42 +0200
parents ec5a55266f6a
children bf506f739322
line wrap: on
line diff
--- a/behaviours/player.py	Mon Sep 05 14:09:04 2011 +0200
+++ b/behaviours/player.py	Mon Sep 05 14:14:42 2011 +0200
@@ -13,7 +13,8 @@
 #   You should have received a copy of the GNU General Public License
 #   along with PARPG.  If not, see <http://www.gnu.org/licenses/>.
 
-from base import *
+import base
+from base import BaseBehaviour
 
 class PlayerBehaviour (BaseBehaviour):
     def __init__(self, parent=None, layer=None):