merge cleanup
Some checks failed
Test Rust project / test (ubuntu-latest, stable) (push) Failing after 39s

This commit is contained in:
2026-02-07 20:55:05 -07:00
parent f654ce37a6
commit b41a69781c

View File

@@ -20,7 +20,7 @@ impl<'a> CallbackContext<'a> {
let mut buf = Vec::new(); let mut buf = Vec::new();
for x in start..=end { for x in start..=end {
for y in 0..=self.variables.max_y_at_x(x) { for y in 0..=self.variables.get_grid().max_y_at_x(x) {
if let Some(s) = self.variables.get_cell_raw(x, y) { if let Some(s) = self.variables.get_cell_raw(x, y) {
buf.push(s); buf.push(s);
} }