You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: paper-api/src/main/java/org/bukkit/entity/Entity.java
+3-7
Original file line number
Diff line number
Diff line change
@@ -337,7 +337,6 @@ final class Holder {
337
337
*/
338
338
booleanisFrozen();
339
339
340
-
// Paper start - missing entity api
341
340
/**
342
341
* Sets whether the entity is invisible or not.
343
342
* <p>
@@ -347,14 +346,14 @@ final class Holder {
347
346
*
348
347
* @param invisible If the entity is invisible
349
348
*/
350
-
voidsetInvisible(booleaninvisible);// Paper - moved up from LivingEntity
349
+
voidsetInvisible(booleaninvisible);
351
350
352
351
/**
353
352
* Gets whether the entity is invisible or not.
354
353
*
355
354
* @return Whether the entity is invisible
356
355
*/
357
-
booleanisInvisible();// Paper - moved up from LivingEntity
356
+
booleanisInvisible();
358
357
359
358
/**
360
359
* Sets this entities no physics status.
@@ -369,9 +368,7 @@ final class Holder {
369
368
* @return true if the entity does not have physics.
370
369
*/
371
370
booleanhasNoPhysics();
372
-
// Paper end - missing entity api
373
371
374
-
// Paper start - Freeze Tick Lock API
375
372
/**
376
373
* Gets if the entity currently has its freeze ticks locked
377
374
* to a set amount.
@@ -389,12 +386,11 @@ final class Holder {
389
386
* @param locked prevent vanilla modification or not
390
387
*/
391
388
voidlockFreezeTicks(booleanlocked);
392
-
// Paper end - Freeze Tick Lock API
393
389
394
390
/**
395
391
* Mark the entity's removal.
396
392
*
397
-
* @throws UnsupportedOperationException if you try to remove a {@link Player} use {@link Player#kickPlayer(String)} in this case instead
393
+
* @throws UnsupportedOperationException if you try to remove a {@link Player} use {@link Player#kick(net.kyori.adventure.text.Component)} in this case instead
0 commit comments