diff options
author | Lejo <Lejo_1@web.de> | 2020-07-30 00:16:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 23:16:21 +0200 |
commit | 715a123a33db7b0f191259ba68cbc9c565d0d4e8 (patch) | |
tree | 5925cc93ad339477d58dcea42bcf79b62e2ded5d /src/network | |
parent | f34abaedd2b9277c1862cd9b82ca3338747f104e (diff) | |
download | minetest-715a123a33db7b0f191259ba68cbc9c565d0d4e8.tar.gz minetest-715a123a33db7b0f191259ba68cbc9c565d0d4e8.tar.bz2 minetest-715a123a33db7b0f191259ba68cbc9c565d0d4e8.zip |
Add PUT and DELETE request + specific method value to HTTP API (#9909)
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/networkprotocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkprotocol.h b/src/network/networkprotocol.h index 28abf02c0..05600cda9 100644 --- a/src/network/networkprotocol.h +++ b/src/network/networkprotocol.h @@ -1034,7 +1034,7 @@ const static std::string accessDeniedStrings[SERVER_ACCESSDENIED_MAX] = { "This server has experienced an internal error. You will now be disconnected." }; -enum PlayerListModifer: u8 +enum PlayerListModifer : u8 { PLAYER_LIST_INIT, PLAYER_LIST_ADD, |