summaryrefslogtreecommitdiff
path: root/src/game/g_active.c
AgeCommit message (Collapse)Author
2017-08-14I think I forgot something.Paweł Redman
2017-08-14Add more extrapolation debugging.Paweł Redman
2017-08-14For fuck's sake.Paweł Redman
2017-08-14That wasn't a sign error.Paweł Redman
2017-08-14Fix a sign error in player extrapolation.Paweł Redman
2017-08-14Fix a few errors in player extrapolation.Paweł Redman
2017-08-14Implement player extrapolation.Paweł Redman
If a player doesn't send client frames fast enough then there will be some server frames where they don't move. This is visible as 'warping' and is generally very undesirable. Extrapolation tries to fix the problem by filling in the missing data by continuing player's trajectory.
2017-05-14Adv. Basilisk healing aura & tyrant regen tweaksMaeJong
Adv. Basi healing aura now boosts regen x1.5 instead of x2 (rounded up) Tyrant regen lowered from 9 to 8
2017-05-14Move tyrant healing aura to adv. basilisksMaeJong
Healing aura stats remain the same Tyrant basic regen buffed from 7 to 9
2017-04-15Improve g_gradualFreeFunds.Paweł Redman
g_gradualFreeFunds values: 0 - disabled 1 - vanilla behavior 2 - 1 and counters don't reset on death or evolution 3 - 2 and funds are given even during SD
2017-04-15implement g_gradualFreeFunds: give free funds to each player every 2 ↵/dev/humancontroller
minutes, regardless of kills and deaths
2017-04-15remove the "poison running out" blinking functionality/dev/humancontroller
the real reason behind this is to avoid changing the playerstate's boosttime stat almost every frame
2017-04-15fix a bunch of C-specific programming errors/dev/humancontroller
detected by Clang
2017-04-15multi-protocol: change the playerState_t and entityState_t structs to the ↵Jeff Kent
versions in the latest code base this includes changing how ammo and clips r stored
2017-04-15fix unlagged not being used at all for overly large latencies/dev/humancontroller
2017-04-15import the cQVM game modulePaweł Redman
replacing the existing one
2017-04-15import the Slacker's QVM code baseSlackerLinux85