diff options
author | ubq323 <ubq323@ubq323.website> | 2023-02-25 15:09:58 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-02-25 15:09:58 +0000 |
commit | 242a0b4e7deb356a0015fbf536158962ad2ea29c (patch) | |
tree | 534e6e975ba08d013c1a518729775ccde5eee7d0 /common | |
parent | 41a7a40ecf71613c6cb3f7823491c45d9c9c63e0 (diff) |
move player size to constants.lua; fix channel-related bug where player movement wasn't being recieved properly
Diffstat (limited to 'common')
-rw-r--r-- | common/constants.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/constants.lua b/common/constants.lua index bf1bb7a..af54a24 100644 --- a/common/constants.lua +++ b/common/constants.lua @@ -1,4 +1,6 @@ -- to avoid some circular dependencies return { CHUNK_SIZE=64, + -- radius + PLAYER_SIZE=0.35, } |