(9d4f6093f) Standardize the console commands for switching to editors. Revisit the descriptions and add Level Editor, Sprite Editor, and Particle Editor in the debug console help. Reduce the variants for all the commands.

This commit is contained in:
Joonas Rikkonen
2019-04-25 17:44:05 +03:00
parent d1695238f7
commit 16bebd57be
3 changed files with 22 additions and 9 deletions
@@ -33,8 +33,7 @@ namespace Barotrauma
//update client hulls if the amount of water has changed by >10%
//or if oxygen percentage has changed by 5%
if (Math.Abs(lastSentVolume - waterVolume) > Volume * 0.1f ||
Math.Abs(lastSentOxygen - OxygenPercentage) > 5f ||
FireSources.Count > 0)
Math.Abs(lastSentOxygen - OxygenPercentage) > 5f)
{
sendUpdateTimer -= deltaTime;
if (sendUpdateTimer < 0.0f)