Skip to content

Commit

Permalink
[ServerConfig] 'useItemDrops' is now 'false' by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
Unarelith committed Apr 29, 2020
1 parent 1662335 commit 4695ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server_config.example.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
-- See source/server/core/ServerConfig.cpp for more details

-- Gameplay
useItemDrops = true
useItemDrops = false

2 changes: 1 addition & 1 deletion source/server/core/ServerConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "ServerConfig.hpp"

// Gameplay
bool ServerConfig::useItemDrops = true;
bool ServerConfig::useItemDrops = false;

#include <gk/core/Debug.hpp>
#include <gk/core/Filesystem.hpp>
Expand Down

0 comments on commit 4695ce9

Please sign in to comment.