Skip to content

Commit 08b7317

Browse files
qwqtodaygithub-actions[bot]extremeheatrom1504
authored
Mounting for other entities and fix bot not dismounting when the vehicle is gone (#3384)
* dismounting when the vehicle is gone * solve my problems temporary * add mounting and dismounting for other entities * Revert unnecessary changes This reverts commit a95ee68. * not checking the entityId when applying passenger vehicle and vehicle passengers in `attach_entity` in `entities.js` * make sure the vehicle passengers are correctly removed * rename vehicle to originalVehicle * remove passenger from vehicle.passengers after passenger left that vehicle * push passenger to vehicle.passengers * remove that 💀 * ensure vehicle is not null in `set_passengers` * Fix linting errors * Empty commit * Point the prismarine-entity package to my branch * Update package.json --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: extremeheat <[email protected]> Co-authored-by: Romain Beaumont <[email protected]>
1 parent b8f5814 commit 08b7317

File tree

2 files changed

+63
-16
lines changed

2 files changed

+63
-16
lines changed

lib/plugins/entities.js

+62-15
Original file line numberDiff line numberDiff line change
@@ -803,26 +803,73 @@ function inject (bot) {
803803

804804
// attaching to a vehicle
805805
bot._client.on('attach_entity', (packet) => {
806-
if (packet.entityId !== bot.entity.id) return
807-
const vehicle = bot.vehicle
808-
if (packet.vehicleId === -1) {
809-
bot.vehicle = null
810-
bot.emit('dismount', vehicle)
811-
} else {
812-
bot.vehicle = bot.entities[packet.vehicleId]
813-
bot.emit('mount')
806+
const passenger = fetchEntity(packet.entityId)
807+
const vehicle = packet.vehicleId === -1 ? null : fetchEntity(packet.vehicleId)
808+
809+
const originalVehicle = passenger.vehicle
810+
if (originalVehicle !== null) {
811+
const index = originalVehicle.passengers.indexOf(passenger)
812+
originalVehicle.passengers = originalVehicle.passengers.splice(index, 1)
813+
}
814+
passenger.vehicle = vehicle
815+
vehicle.passengers.push(passenger)
816+
817+
if (packet.entityId === bot.entity.id) {
818+
const vehicle = bot.vehicle
819+
if (packet.vehicleId === -1) {
820+
bot.vehicle = null
821+
bot.emit('dismount', vehicle)
822+
} else {
823+
bot.vehicle = bot.entities[packet.vehicleId]
824+
bot.emit('mount')
825+
}
814826
}
815827
})
816828

817829
bot._client.on('set_passengers', ({ entityId, passengers }) => {
818-
if (passengers[0] !== bot.entity.id) return
819-
const vehicle = bot.vehicle
820-
if (entityId === -1) {
830+
const passengerEntities = passengers.map((passengerId) => fetchEntity(passengerId))
831+
const vehicle = entityId === -1 ? null : bot.entities[entityId]
832+
833+
for (const passengerEntity of passengerEntities) {
834+
const originalVehicle = passengerEntity.vehicle
835+
if (originalVehicle !== null) {
836+
const index = originalVehicle.passengers.indexOf(passengerEntity)
837+
originalVehicle.passengers = originalVehicle.passengers.splice(index, 1)
838+
}
839+
passengerEntity.vehicle = vehicle
840+
if (vehicle !== null) {
841+
vehicle.passengers.push(passengerEntity)
842+
}
843+
}
844+
845+
if (passengers.includes(bot.entity.id)) {
846+
const originalVehicle = bot.vehicle
847+
if (entityId === -1) {
848+
bot.vehicle = null
849+
bot.emit('dismount', originalVehicle)
850+
} else {
851+
bot.vehicle = bot.entities[entityId]
852+
bot.emit('mount')
853+
}
854+
}
855+
})
856+
857+
// dismounting when the vehicle is gone
858+
bot._client.on('entityGone', (entity) => {
859+
if (bot.vehicle === entity) {
821860
bot.vehicle = null
822-
bot.emit('dismount', vehicle)
823-
} else {
824-
bot.vehicle = bot.entities[entityId]
825-
bot.emit('mount')
861+
bot.emit('dismount', (entity))
862+
}
863+
if (entity.passengers) {
864+
for (const passenger of entity.passengers) {
865+
passenger.vehicle = null
866+
}
867+
}
868+
if (entity.vehicle) {
869+
const index = entity.vehicle.passengers.indexOf(entity)
870+
if (index !== -1) {
871+
entity.vehicle.passengers = entity.vehicle.passengers.splice(index, 1)
872+
}
826873
}
827874
})
828875

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"prismarine-block": "^1.17.0",
2828
"prismarine-chat": "^1.7.1",
2929
"prismarine-chunk": "^1.36.0",
30-
"prismarine-entity": "^2.3.0",
30+
"prismarine-entity": "^2.5.0",
3131
"prismarine-item": "^1.15.0",
3232
"prismarine-nbt": "^2.0.0",
3333
"prismarine-physics": "^1.9.0",

0 commit comments

Comments
 (0)