Fixed issue with Hero of Tatooine where Farmers Wife could not be identified in order to properly get item for quest.

This commit is contained in:
Cekis
2018-03-23 16:01:18 -07:00
committed by CekisSWG
parent bf63208afb
commit c08b122d93
@@ -79,7 +79,8 @@ public class altruism_control extends script.base_script
obj_id object = objects[i];
if (isIdValid(object) && isMob(object))
{
if ((getCreatureName(object)).equals("quest_hero_of_tatooine_farmer_wife"))
String cName = getCreatureName(object);
if (cName != null && cName.equals("quest_hero_of_tatooine_farmer_wife"))
{
mother = object;
break;