diff --git a/info/launch.t b/info/launch.t index 8ccb9349..bb39b0cb 100644 --- a/info/launch.t +++ b/info/launch.t @@ -37,7 +37,7 @@ Once a satellite has been launched, it can not be moved again. .s1 Note here that it is much safer to use 100% missiles than those which are less efficient, -and missiles below 60% cannot be launched. +and missiles below 40% cannot be launched. .s1 The formula for the chance that a missile hits its target is in \*Qinfo Hitchance\*U. diff --git a/src/lib/commands/laun.c b/src/lib/commands/laun.c index 01d03c05..3c028376 100644 --- a/src/lib/commands/laun.c +++ b/src/lib/commands/laun.c @@ -93,7 +93,7 @@ laun(void) } } - if (plane.pln_effic < 60) { + if (plane.pln_effic < 40) { pr("%s is damaged (%d%%)\n", prplane(&plane), plane.pln_effic); continue; }