mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-13 03:49:09 +01:00
fix the player probe not clearing its data properly
This commit is contained in:
parent
d7143feab8
commit
74d2c84bd5
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ public class ItemPlayerProbe extends ItemBase{
|
|||
}
|
||||
}
|
||||
else{
|
||||
ItemPhantomConnector.clearStorage(stack, "UUID", "Name");
|
||||
ItemPhantomConnector.clearStorage(stack, "UUIDLeast", "UUIDMost", "Name");
|
||||
entity.addChatMessage(new TextComponentTranslation("tooltip."+ModUtil.MOD_ID+".playerProbe.disconnect.2"));
|
||||
}
|
||||
}
|
||||
|
@ -80,7 +80,7 @@ public class ItemPlayerProbe extends ItemBase{
|
|||
face.markDirty();
|
||||
face.sendUpdate();
|
||||
|
||||
ItemPhantomConnector.clearStorage(stack, "UUID", "Name");
|
||||
ItemPhantomConnector.clearStorage(stack, "UUIDLeast", "UUIDMost", "Name");
|
||||
}
|
||||
return EnumActionResult.SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue