Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions bflib/src/chatcmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,18 @@ fn action_help(ctx: &mut Context, actions: &IndexMap<String, Action, FxBuildHash
action.cost
)),
ActionKind::Bomber(_) => None,
ActionKind::CruiseMissileSpawn(_) => Some(format_compact!(
"{name}: <key> | Spawn a cruise missile bomber at key, a mark point. cost {}",
action.cost
)),
ActionKind::CruiseMissile(_,_) => Some(format_compact!(
"{name}: <key> | Commence a cruise missile strike at key, a mark point. cost {}",
action.cost
)),
ActionKind::CruiseMissileWaypoint => Some(format_compact!(
"{name}: <group> <key> | Move a cruise missile bomber to key, a mark point. Group is the bomber group. cost {}",
action.cost
)),
ActionKind::Deployable(d) => Some(format_compact!(
"{name}: <key> | Ai deploy a {} at key a mark point. cost {}",
d.name,
Expand Down
Loading