@@ -176,11 +176,11 @@ bot.on('playerCollect', (collector, collected) => {
176
176
177
177
bot . on ( 'entitySpawn' , ( entity ) => {
178
178
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 } ` )
180
180
} else if ( entity . type === 'player' ) {
181
181
bot . chat ( `Look who decided to show up: ${ entity . username } ` )
182
182
} 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 } ` )
184
184
} else if ( entity . type === 'global' ) {
185
185
bot . chat ( 'Ooh lightning!' )
186
186
} else if ( entity . type === 'orb' ) {
@@ -189,7 +189,7 @@ bot.on('entitySpawn', (entity) => {
189
189
} )
190
190
bot . on ( 'entityHurt' , ( entity ) => {
191
191
if ( entity . type === 'mob' ) {
192
- bot . chat ( `Haha! The ${ entity . mobType } got hurt!` )
192
+ bot . chat ( `Haha! The ${ entity . displayName } got hurt!` )
193
193
} else if ( entity . type === 'player' ) {
194
194
bot . chat ( `Aww, poor ${ entity . username } got hurt. Maybe you shouldn't have a ping of ${ bot . players [ entity . username ] . ping } ` )
195
195
}
@@ -214,12 +214,12 @@ bot.on('entityEat', (entity) => {
214
214
} )
215
215
bot . on ( 'entityAttach' , ( entity , vehicle ) => {
216
216
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 } ` )
218
218
}
219
219
} )
220
220
bot . on ( 'entityDetach' , ( entity , vehicle ) => {
221
221
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 } ` )
223
223
}
224
224
} )
225
225
bot . on ( 'entityEquipmentChange' , ( entity ) => {
0 commit comments