Reduce pneumatic cannon mole usage

This commit is contained in:
Kara D
2021-11-22 02:08:29 -07:00
parent 4fa4289e95
commit 8b47d0f43f

View File

@@ -383,9 +383,9 @@ namespace Content.Server.PneumaticCannon
{ {
return power switch return power switch
{ {
PneumaticCannonPower.High => 15f, PneumaticCannonPower.High => 9f,
PneumaticCannonPower.Medium => 10f, PneumaticCannonPower.Medium => 6f,
PneumaticCannonPower.Low or _ => 5f, PneumaticCannonPower.Low or _ => 3f,
}; };
} }