diff options
author | Barichello <artur@barichello.me> | 2022-01-24 11:05:42 -0300 |
---|---|---|
committer | Barichello <artur@barichello.me> | 2022-01-24 22:27:52 -0300 |
commit | 686b3f80cd2644c56e4025080b5be8b1e8fe5d7a (patch) | |
tree | 828ee9b77574369ecac0e6de6c53e0c3c396c9c5 | |
parent | 718fa5850bfa4e06a93993f688e0495f414fe8ee (diff) | |
download | NorthstarMods-686b3f80cd2644c56e4025080b5be8b1e8fe5d7a.tar.gz NorthstarMods-686b3f80cd2644c56e4025080b5be8b1e8fe5d7a.zip |
Reset velocity when phase rewind ends
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/burnmeter/_burnmeter.gnut | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/burnmeter/_burnmeter.gnut b/Northstar.CustomServers/mod/scripts/vscripts/burnmeter/_burnmeter.gnut index 2e65dbd3..fbdf1789 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/burnmeter/_burnmeter.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/burnmeter/_burnmeter.gnut @@ -433,6 +433,7 @@ void function PlayerUsesPhaseRewindBurncardThreaded( entity player ) mover.NonPhysicsRotateTo( positions[ i ].angles, PHASE_REWIND_PATH_SNAPSHOT_INTERVAL, 0, 0 )
wait PHASE_REWIND_PATH_SNAPSHOT_INTERVAL
}
+ player.SetVelocity( <0, 0, 0> )
}
void function PlayerUsesNukeTitanBurncard( entity player )
|