private void OnTriggerEnter(Collider other)
 {
     if (!_trapUsed)
     {
         Bookshelf.Trigger();
         _trapUsed = true;
     }
 }