From 3c8a6757bb155fd9a1acc6b1b6e3775886b6bbe0 Mon Sep 17 00:00:00 2001 From: tomrus88 Date: Sat, 22 Nov 2008 18:20:03 +0300 Subject: [PATCH] Compile fix --- src/game/Creature.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Creature.h b/src/game/Creature.h index dbe3e9248..af97e517e 100644 --- a/src/game/Creature.h +++ b/src/game/Creature.h @@ -216,7 +216,7 @@ struct CreatureInfo bool isTameable() const { - return type == CREATURE_TYPE_BEAST && family != 0 && (type_flags & CREATURE_TYPEFLAGS_TAMEBLE); + return type == CREATURE_TYPE_BEAST && family != 0 && (type_flags & CREATURE_TYPEFLAGS_TAMEABLE); } }; -- 2.11.4.GIT