release version 3.8.15

This commit is contained in:
Enno Rehling 2016-08-06 23:27:23 +02:00
parent ca7b250c46
commit ae3e5b8088
2 changed files with 2 additions and 3 deletions

View File

@ -75,8 +75,7 @@ faction *visible_faction(const faction * f, const unit * u)
attrib *a = a_find(u->attribs, &at_otherfaction); attrib *a = a_find(u->attribs, &at_otherfaction);
if (a) { if (a) {
faction *fv = get_otherfaction(a); faction *fv = get_otherfaction(a);
assert(fv != NULL); /* fv should never be NULL! */ if (fv) return fv;
return fv;
} }
} }
return u->faction; return u->faction;

View File

@ -1,3 +1,3 @@
#define VERSION_MAJOR 3 #define VERSION_MAJOR 3
#define VERSION_MINOR 8 #define VERSION_MINOR 8
#define VERSION_BUILD 14 #define VERSION_BUILD 15