This commit is contained in:
aozhiwei 2020-07-27 11:48:15 +08:00
parent f744e32e87
commit c1110117bb

View File

@ -1640,6 +1640,11 @@ BornPoint* Room::AllocBornPoint(Human* hum)
if (born_point) {
IncBornPointHumanNum(born_point, hum);
}
#ifdef DEBUG
if (!born_point) {
abort();
}
#endif
return born_point;
}