We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b3eaa commit a2832f3Copy full SHA for a2832f3
mod.json
@@ -8,7 +8,7 @@
8
},
9
"id": "alphalaneous.alphas_geode_utils",
10
"name": "Alpha's Geode Utils",
11
- "version": "v1.0.0",
+ "version": "v1.0.1",
12
"developer": "Alphalaneous",
13
"description": "Miscellaneous utilities for Geode Modding",
14
"api": {
src/NodeModding.cpp
@@ -21,7 +21,7 @@ void NodeModding::handleNode(CCNode* node) {
21
return left.priority < right.priority;
22
});
23
24
- for (auto pair : methods) {
+ for (auto& pair : methods) {
25
pair.method(node);
26
}
27
0 commit comments