diff options
| author | oy <Tom_Adams@web.de> | 2012-01-10 00:49:31 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2012-01-10 00:49:31 +0100 |
| commit | dfe91338f03534a6c8ed596f16742e7a1617d78e (patch) | |
| tree | 4f2f93488745628c56dbd4d29d8b482dc584a724 /src/game/server/entities/laser.cpp | |
| parent | 9251796c3a8e3f31f9aa52ef84b9e0ce475d2f9b (diff) | |
| download | zcatch-dfe91338f03534a6c8ed596f16742e7a1617d78e.tar.gz zcatch-dfe91338f03534a6c8ed596f16742e7a1617d78e.zip | |
added pause command. Closes #15
Diffstat (limited to 'src/game/server/entities/laser.cpp')
| -rw-r--r-- | src/game/server/entities/laser.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/server/entities/laser.cpp b/src/game/server/entities/laser.cpp index 7278995f..eb40c4e1 100644 --- a/src/game/server/entities/laser.cpp +++ b/src/game/server/entities/laser.cpp @@ -91,6 +91,11 @@ void CLaser::Tick() DoBounce(); } +void CLaser::TickPaused() +{ + ++m_EvalTick; +} + void CLaser::Snap(int SnappingClient) { if(NetworkClipped(SnappingClient)) |