wanting it so that when a player is rezed they are naked instead of with this robe

any help would be much appreciated :)
 

Attachments

  • Rez robe.png
    Rez robe.png
    10.9 KB · Views: 1
PlayerMobile.cs
Resurrect() method, need to remove next lines:
C#:
                Item deathRobe = new DeathRobe();

                if (!EquipItem(deathRobe))
                {
                    deathRobe.Delete();
                }
 
Back