We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems to be something wrong with negative numbers? Is there something I need to configure for that.
let mut tile_result = driver .execute( query( " MATCH (p:Player {username: 'c'})-[:EXPLORED]->(t:Tile) OPTIONAL MATCH (p)-[:UNIT]->(u:Unit)-[:FOV]->(t) OPTIONAL MATCH (u)-[:Position]->(pt:Tile) RETURN COLLECT(DISTINCT apoc.map.merge({node_id: elementId(u), tile_node_id: elementId(pt)}, properties(u))) AS units, COLLECT(DISTINCT apoc.map.merge({id: elementId(t), fov:u is not null}, properties(t))) AS tiles ", ) .param("username", username), ) .await?; let row = tile_result .next() .await? .expect("No row returned for tile query"); println!("{:#?}", row);
The text was updated successfully, but these errors were encountered:
It's like it's subtracting from 256 if its minus but if its below -256 it must just display the correct number
Sorry, something went wrong.
-10.0 works so floats arent broken
No branches or pull requests
Seems to be something wrong with negative numbers?
Is there something I need to configure for that.
The text was updated successfully, but these errors were encountered: