(this, entity, vehicle)
| 283 | |
| 284 | @On(bot, "entityDetach") |
| 285 | def entityDetach(this, entity, vehicle): |
| 286 | if entity.type == "player" and vehicle.type == "object": |
| 287 | print(f"Lame, {entity.username} stopped riding the {vehicle.displayName}") |
| 288 | |
| 289 | |
| 290 | @On(bot, "entityEquipmentChange") |
nothing calls this directly
no test coverage detected
searching dependent graphs…