mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
When deprecating, the alternative should be provided.
By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
parent
78978db92c
commit
f883848b8d
1 changed files with 4 additions and 4 deletions
|
@ -49,14 +49,14 @@ public class CraftCreatureSpawner extends CraftBlockState implements CreatureSpa
|
|||
}
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @deprecated Use getCreatureType() instead.
|
||||
*/
|
||||
public MobType getMobType() {
|
||||
return MobType.fromName(spawner.h);
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @deprecated Use setCreatureType() instead.
|
||||
*/
|
||||
public void setMobType(MobType mobType) {
|
||||
spawner.h = mobType.getName();
|
||||
|
@ -64,14 +64,14 @@ public class CraftCreatureSpawner extends CraftBlockState implements CreatureSpa
|
|||
}
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @deprecated Use getCreatureTypeId() instead.
|
||||
*/
|
||||
public String getMobTypeId() {
|
||||
return spawner.h;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @deprecated Use setCreatureTypeId() instead.
|
||||
*/
|
||||
public void setMobTypeId(String mobType) {
|
||||
// Verify input
|
||||
|
|
Loading…
Reference in a new issue