feat: Decode cloud top and direction remarks

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
2026-02-14 16:41:22 -07:00
parent 0daf21c98a
commit 48527dae50
+3
View File
@@ -465,6 +465,9 @@
} else if (mod === 'TR') { } else if (mod === 'TR') {
text = ` - ${cloudCode} TR: ${cloudName} clouds are translucent (thin)`; text = ` - ${cloudCode} TR: ${cloudName} clouds are translucent (thin)`;
consumed = 2; consumed = 2;
} else if (mod === 'TOP' && p.length > 2 && isDirection(p[2])) {
text = ` - ${cloudCode} TOP ${p[2]}: ${cloudName} cloud tops to the ${decodeDirection(p[2])}`;
consumed = 3;
} else if (mod === 'DSNT' && p.length > 2 && isDirection(p[2])) { } else if (mod === 'DSNT' && p.length > 2 && isDirection(p[2])) {
text = ` - ${cloudCode} DSNT ${p[2]}: ${cloudName} distant ${decodeDirection(p[2])}`; text = ` - ${cloudCode} DSNT ${p[2]}: ${cloudName} distant ${decodeDirection(p[2])}`;
consumed = 3; consumed = 3;