PARALLACTION: do not skip commands on Examine zones if there is no text to show. This fixes bug #3135782.

svn-id: r54882
This commit is contained in:
Nicola Mettifogo 2010-12-12 11:43:23 +00:00
parent 2bbe59ad8d
commit d19d9991b2

View File

@ -520,6 +520,7 @@ void Parallaction::enterCommentMode(ZonePtr z) {
TypeData *data = &_commentZone->u;
if (data->_examineText.empty()) {
exitCommentMode();
return;
}