mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-09-21 07:13:00 -04:00
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:
Regular → Executable
+2
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user