diff options
author | 12xx12 <44411062+12xx12@users.noreply.github.com> | 2021-04-20 17:09:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 17:09:20 +0200 |
commit | 02571aae504fd3a2e63765dff66b18e723d49a6b (patch) | |
tree | 5a40c9702c8c4a094b039b33ff0e7fa7ca11e1b6 | |
parent | fixes the fallthrough (#5198) (diff) | |
download | cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar.gz cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar.bz2 cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar.lz cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar.xz cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.tar.zst cuberite-02571aae504fd3a2e63765dff66b18e723d49a6b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol_1_13.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Protocol/Protocol_1_13.h b/src/Protocol/Protocol_1_13.h index 970625877..4992c5a1f 100644 --- a/src/Protocol/Protocol_1_13.h +++ b/src/Protocol/Protocol_1_13.h @@ -46,6 +46,8 @@ protected: virtual void SendTabCompletionResults (const AStringVector & a_Results) override; virtual void SendUpdateBlockEntity (cBlockEntity & a_BlockEntity) override; + virtual void SendWeather (eWeather a_Weather) override {} // This packet was removed. This keeps players from joining the server with 1.13 while there is downfall + virtual UInt8 GetEntityMetadataID(EntityMetadata a_Metadata) const; virtual UInt8 GetEntityMetadataID(EntityMetadataType a_FieldType) const; virtual std::pair<short, short> GetItemFromProtocolID(UInt32 a_ProtocolID) const; |