mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Fully Implemented 1.20
This commit is contained in:
parent
b21f40593e
commit
ae7ce35cc8
14 changed files with 3313 additions and 209 deletions
|
|
@ -220,7 +220,7 @@ namespace MinecraftClient.Protocol
|
|||
/// <param name="location">Location</param>
|
||||
/// <param name="face">Block face</param>
|
||||
/// <param name="sequenceId">Sequence ID (use for synchronization)</param>
|
||||
/// <returns>True if packet was succcessfully sent</returns>
|
||||
/// <returns>True if packet was successfully sent</returns>
|
||||
bool SendPlayerDigging(int status, Location location, Direction face, int sequenceId);
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -231,8 +231,9 @@ namespace MinecraftClient.Protocol
|
|||
/// <param name="line2">New line 2</param>
|
||||
/// <param name="line3">New line 3</param>
|
||||
/// <param name="line4">New line 4</param>
|
||||
/// <returns>True if packet was succcessfully sent</returns>
|
||||
bool SendUpdateSign(Location location, string line1, string line2, string line3, string line4);
|
||||
/// <param name="isFrontText">Are we editing the front or the back of the sign. 1.20 +</param>
|
||||
/// <returns>True if packet was successfully sent</returns>
|
||||
bool SendUpdateSign(Location location, string line1, string line2, string line3, string line4, bool isFrontText = true);
|
||||
|
||||
/// <summary>
|
||||
/// Update command block
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue