Results 19 comments of Edwan Vi

Ask the moderators of that memo. This isn't something pertaining to pesterchum itself. If @illuminatedwax or another contributor would close this issue that would be great.

We're having the same issue. I'm (pretty) sure that our .csv files are the `_detailed` versions, but the JRE crashes when trying to lead them into Trajectory objects (with `Pathfinder.readFromCSV`.)...

We have both CSVs on the robot alongside the compiled .jar version of our code. Might try what you guys have done to see if it works (i.e. putting it...

Some time later, we're still segfaulting on loading the CSV files. We've tried both putting them in a different directory and setting the permissions on both files to `777` with...

They're in [this gist](https://gist.github.com/tkdberger/38935891781fc6342daf7ad8284bb55d) (as well as the JVM crash log at the bottom.) GitHub pretty-prints them as tables, so here's [the raw right side](https://gist.githubusercontent.com/tkdberger/38935891781fc6342daf7ad8284bb55d/raw/e68d6a72cb00761395349511f41fdbd5d4d5d894/center_to_right_right.csv) and [the raw left side.](https://gist.githubusercontent.com/tkdberger/38935891781fc6342daf7ad8284bb55d/raw/e68d6a72cb00761395349511f41fdbd5d4d5d894/center_to_right_left.csv)...

It's been several months...any updates?

This isn't an issue on our end, unless you can prove that it works as intended if Buildcraft is installed any other way.

Did you literally run `python3 /path/to/downloader /path/to/manifest` or did you substitute in the file paths?

Similar false positive occurs for `pygame.Surface`. Code: ```python class Wall(pygame.sprite.Sprite): def __init__(self, x, y, width, height, color): super().__init__() # Create the "image" for our wall self.image = pygame.Surface([width, height]) self.image.fill(color)...