feat: Decode cloud top and direction remarks
Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user