Quote:
Originally Posted by rusmixx
Error
Code:
Errors:
+ Mobiles/VendorManager.cs:
CS0117: Line 2535: 'Server.Mobiles.BaseCreature' does not contain a definiti
on for 'Allured'
|
Yep, that's something from Erica. It might not be in the SVN itself, but rather in either MalGanis' ML or somehow Callandor2k's RunUO package, off which my development is based.
So in case you don't the have "Allured" defined, you may make the following change in VendorManager.cs, line 2535,
from:
PHP Code:
if ( pet.Deleted || pet.IsDeadPet || pet.Summoned || pet.Allured || !pet.Controlled || !( pet.ControlMaster == from ) )
return;
and change to:
PHP Code:
if ( pet.Deleted || pet.IsDeadPet || pet.Summoned || !pet.Controlled || !( pet.ControlMaster == from ) )
return;
that is, with "|| pet.Allured" removed from the line.