diff options
| author | Alfred Eriksson <somerunce@gmail.com> | 2009-01-24 16:09:20 +0000 |
|---|---|---|
| committer | Alfred Eriksson <somerunce@gmail.com> | 2009-01-24 16:09:20 +0000 |
| commit | b28ede2da2c42643c5aa710a8076f0249d48c9e4 (patch) | |
| tree | 3ca0d0acf9bc9100569777b2b111e311c8cc2867 /src/game/client/components/chat.hpp | |
| parent | 01d74a6d4d23454e50dedad4572fbf8dad80f34d (diff) | |
| download | zcatch-b28ede2da2c42643c5aa710a8076f0249d48c9e4.tar.gz zcatch-b28ede2da2c42643c5aa710a8076f0249d48c9e4.zip | |
changed chatmsgs to use time instead of ticks
Diffstat (limited to 'src/game/client/components/chat.hpp')
| -rw-r--r-- | src/game/client/components/chat.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/chat.hpp b/src/game/client/components/chat.hpp index 211b3085..593ef87e 100644 --- a/src/game/client/components/chat.hpp +++ b/src/game/client/components/chat.hpp @@ -12,7 +12,7 @@ class CHAT : public COMPONENT struct LINE { - int tick; + int64 time; int client_id; int team; int name_color; |