Skip to content

Commit 2409ad4

Browse files
authored
Switch to entity.displayName (#3168)
* Switch to display name * Bump prismarine entity
1 parent f5d4a28 commit 2409ad4

File tree

8 files changed

+16
-19
lines changed

8 files changed

+16
-19
lines changed

examples/armor_stand.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bot.on('chat', async (username, message) => {
2626
const [mainCommand, subCommand] = message.split(' ')
2727
if (mainCommand !== 'equip' && mainCommand !== 'unequip') return
2828

29-
const armorStand = bot.nearestEntity(e => e.mobType === 'Armor Stand' && bot.entity.position.distanceTo(e.position) < 4)
29+
const armorStand = bot.nearestEntity(e => e.displayName === 'Armor Stand' && bot.entity.position.distanceTo(e.position) < 4)
3030
if (!armorStand) {
3131
bot.chat('No armor stands nearby!')
3232
return

examples/chatterbox.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ bot.on('playerCollect', (collector, collected) => {
176176

177177
bot.on('entitySpawn', (entity) => {
178178
if (entity.type === 'mob') {
179-
console.log(`Look out! A ${entity.mobType} spawned at ${entity.position}`)
179+
console.log(`Look out! A ${entity.displayName} spawned at ${entity.position}`)
180180
} else if (entity.type === 'player') {
181181
bot.chat(`Look who decided to show up: ${entity.username}`)
182182
} else if (entity.type === 'object') {
183-
console.log(`There's a ${entity.objectType} at ${entity.position}`)
183+
console.log(`There's a ${entity.displayName} at ${entity.position}`)
184184
} else if (entity.type === 'global') {
185185
bot.chat('Ooh lightning!')
186186
} else if (entity.type === 'orb') {
@@ -189,7 +189,7 @@ bot.on('entitySpawn', (entity) => {
189189
})
190190
bot.on('entityHurt', (entity) => {
191191
if (entity.type === 'mob') {
192-
bot.chat(`Haha! The ${entity.mobType} got hurt!`)
192+
bot.chat(`Haha! The ${entity.displayName} got hurt!`)
193193
} else if (entity.type === 'player') {
194194
bot.chat(`Aww, poor ${entity.username} got hurt. Maybe you shouldn't have a ping of ${bot.players[entity.username].ping}`)
195195
}
@@ -214,12 +214,12 @@ bot.on('entityEat', (entity) => {
214214
})
215215
bot.on('entityAttach', (entity, vehicle) => {
216216
if (entity.type === 'player' && vehicle.type === 'object') {
217-
bot.chat(`Sweet, ${entity.username} is riding that ${vehicle.objectType}`)
217+
bot.chat(`Sweet, ${entity.username} is riding that ${vehicle.displayName}`)
218218
}
219219
})
220220
bot.on('entityDetach', (entity, vehicle) => {
221221
if (entity.type === 'player' && vehicle.type === 'object') {
222-
bot.chat(`Lame, ${entity.username} stopped riding the ${vehicle.objectType}`)
222+
bot.chat(`Lame, ${entity.username} stopped riding the ${vehicle.displayName}`)
223223
}
224224
})
225225
bot.on('entityEquipmentChange', (entity) => {

examples/guard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ bot.on('physicsTick', () => {
5959

6060
// Only look for mobs within 16 blocks
6161
const filter = e => e.type === 'mob' && e.position.distanceTo(bot.entity.position) < 16 &&
62-
e.mobType !== 'Armor Stand' // Mojang classifies armor stands as mobs for some reason?
62+
e.displayName !== 'Armor Stand' // Mojang classifies armor stands as mobs for some reason?
6363

6464
const entity = bot.nearestEntity(filter)
6565
if (entity) {

examples/jumper.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ bot.once('spawn', () => {
108108
})
109109

110110
bot.on('mount', () => {
111-
bot.chat(`mounted ${bot.vehicle.objectType}`)
111+
bot.chat(`mounted ${bot.vehicle.displayName}`)
112112
})
113113

114114
bot.on('dismount', (vehicle) => {
115-
bot.chat(`dismounted ${vehicle.objectType}`)
115+
bot.chat(`dismounted ${vehicle.displayName}`)
116116
})

examples/python/chatterbox.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -224,12 +224,12 @@ def playerCollect(this, collector, collected):
224224
def entitySpawn(this, entity):
225225
if entity.type == "mob":
226226
p = entity.position
227-
console.log(f"Look out! A {entity.mobType} spawned at {p.toString()}")
227+
console.log(f"Look out! A {entity.displayName} spawned at {p.toString()}")
228228
elif entity.type == "player":
229229
bot.chat(f"Look who decided to show up: {entity.username}")
230230
elif entity.type == "object":
231231
p = entity.position
232-
console.log(f"There's a {entity.objectType} at {p.toString()}")
232+
console.log(f"There's a {entity.displayName} at {p.toString()}")
233233
elif entity.type == "global":
234234
bot.chat("Ooh lightning!")
235235
elif entity.type == "orb":
@@ -239,7 +239,7 @@ def entitySpawn(this, entity):
239239
@On(bot, "entityHurt")
240240
def entityHurt(this, entity):
241241
if entity.type == "mob":
242-
bot.chat(f"Haha! The ${entity.mobType} got hurt!")
242+
bot.chat(f"Haha! The ${entity.displayName} got hurt!")
243243
elif entity.type == "player":
244244
if entity.username in bot.players:
245245
ping = bot.players[entity.username].ping
@@ -279,13 +279,13 @@ def entityEat(this, entity):
279279
@On(bot, "entityAttach")
280280
def entityAttach(this, entity, vehicle):
281281
if entity.type == "player" and vehicle.type == "object":
282-
print(f"Sweet, {entity.username} is riding that {vehicle.objectType}")
282+
print(f"Sweet, {entity.username} is riding that {vehicle.displayName}")
283283

284284

285285
@On(bot, "entityDetach")
286286
def entityDetach(this, entity, vehicle):
287287
if entity.type == "player" and vehicle.type == "object":
288-
print(f"Lame, {entity.username} stopped riding the {vehicle.objectType}")
288+
print(f"Lame, {entity.username} stopped riding the {vehicle.displayName}")
289289

290290

291291
@On(bot, "entityEquipmentChange")

lib/plugins/entities.js

-3
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,6 @@ function inject (bot) {
176176
entityData = entitiesArray.find(entity => entity.internalId === type)
177177
}
178178
if (entityData) {
179-
entity.mobType = entityData.displayName
180-
entity.objectType = entityData.displayName
181179
entity.displayName = entityData.displayName
182180
entity.entityType = entityData.id
183181
entity.name = entityData.name
@@ -188,7 +186,6 @@ function inject (bot) {
188186
// unknown entity
189187
entity.type = 'other'
190188
entity.entityType = type
191-
entity.mobType = 'unknown'
192189
entity.displayName = 'unknown'
193190
entity.name = 'unknown'
194191
entity.kind = 'unknown'

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.34.0",
30-
"prismarine-entity": "^2.2.0",
30+
"prismarine-entity": "^2.3.0",
3131
"prismarine-item": "^1.14.0",
3232
"prismarine-nbt": "^2.0.0",
3333
"prismarine-physics": "^1.7.0",

test/internalTest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ for (const supportedVersion of mineflayer.testedVersions) {
714714
it('metadata', (done) => {
715715
server.on('login', (client) => {
716716
bot.on('entitySpawn', (entity) => {
717-
assert.strictEqual(entity.mobType, 'Creeper')
717+
assert.strictEqual(entity.displayName, 'Creeper')
718718

719719
const lastMeta = entity.metadata
720720
bot.on('entityUpdate', (entity) => {

0 commit comments

Comments
 (0)