mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Check getSpawn() before calling its methods
--HG-- branch : hotfix
This commit is contained in:
parent
b0937ec02b
commit
4de072865b
1 changed files with 6 additions and 3 deletions
|
@ -714,9 +714,12 @@ void CBotNpc::sendVPA() // alternate VPA
|
|||
|
||||
void CBotNpc::sendVisualProperties() // VisualPropertyA, B, C
|
||||
{
|
||||
CMirrors::setVisualPropertyA( getSpawn()->dataSetRow(), _VisualPropertyA );
|
||||
CMirrors::setVisualPropertyB( getSpawn()->dataSetRow(), _VisualPropertyB );
|
||||
CMirrors::setVisualPropertyC( getSpawn()->dataSetRow(), _VisualPropertyC );
|
||||
if (getSpawn())
|
||||
{
|
||||
CMirrors::setVisualPropertyA( getSpawn()->dataSetRow(), _VisualPropertyA );
|
||||
CMirrors::setVisualPropertyB( getSpawn()->dataSetRow(), _VisualPropertyB );
|
||||
CMirrors::setVisualPropertyC( getSpawn()->dataSetRow(), _VisualPropertyC );
|
||||
}
|
||||
}
|
||||
|
||||
bool CBotNpc::reSpawn(bool sendMessage)
|
||||
|
|
Loading…
Reference in a new issue