mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Fix log spam on nonexistent models.
This commit is contained in:
parent
66cb6ffaad
commit
b7cd6dfe2d
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ public unsafe class FunModule : IDisposable
|
|||
if (_config.DisableFestivals == 0 && _festivalSet != null
|
||||
|| _codes.EnabledWorld && actor.Index != 0)
|
||||
{
|
||||
armor = actor.Model.GetArmor(slot);
|
||||
armor = actor.Model.Valid ? actor.Model.GetArmor(slot) : actor.GetArmor(slot);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue