diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-30 16:47:03 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-30 19:23:28 -0700 |
commit | 7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77 (patch) | |
tree | 961575586f475d4b47f167a2b40f865f864a0206 /src/mmo | |
parent | 71204f7324a2e01ce50007f16c46386354712ec9 (diff) | |
download | tmwa-7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77.tar.gz tmwa-7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77.tar.bz2 tmwa-7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77.tar.xz tmwa-7c5c2058e9aea996dc6c76a7e6d9ba4fc2a2bc77.zip |
It's about time I did this
Diffstat (limited to 'src/mmo')
-rw-r--r-- | src/mmo/consts.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mmo/consts.hpp b/src/mmo/consts.hpp index 2a20cff..c1a7eb6 100644 --- a/src/mmo/consts.hpp +++ b/src/mmo/consts.hpp @@ -41,9 +41,9 @@ constexpr int TRADE_MAX = 10; constexpr int GLOBAL_REG_NUM = 96; constexpr size_t ACCOUNT_REG_NUM = 16; constexpr size_t ACCOUNT_REG2_NUM = 16; -constexpr interval_t DEFAULT_WALK_SPEED = std::chrono::milliseconds(150); +constexpr interval_t DEFAULT_WALK_SPEED = 150_ms; constexpr interval_t MIN_WALK_SPEED = interval_t::zero(); -constexpr interval_t MAX_WALK_SPEED = std::chrono::seconds(1); +constexpr interval_t MAX_WALK_SPEED = 1_s; constexpr int MAX_STORAGE = 300; constexpr int MAX_PARTY = 12; |