You've already forked MenuGraphr
mirror of
https://github.com/FullScreenShenanigans/MenuGraphr.git
synced 2026-04-28 13:02:13 -07:00
Fix discovered bug in .call missing param (thanks new TS version!)
This commit is contained in:
Generated
+3
-3
@@ -7825,9 +7825,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"timehandlr": {
|
||||
"version": "0.7.3",
|
||||
"resolved": "https://registry.npmjs.org/timehandlr/-/timehandlr-0.7.3.tgz",
|
||||
"integrity": "sha512-U2j2qRwx5YVlevR1HEqI4BcZz19VSA4F/NaLwtWdHI3zO7FXyOSUhpKuzrlkC23mvXeDdwqpBjwKaxpUByaCZw=="
|
||||
"version": "0.7.4",
|
||||
"resolved": "https://registry.npmjs.org/timehandlr/-/timehandlr-0.7.4.tgz",
|
||||
"integrity": "sha512-Mn6vYBAb2YqwNPQ90D7B2Wl+Sfcl7US9+o1rQxIH7Q5GCShasngBXxgJ9TvdvTD2Q2JEkZm1hPZn0d2jQqjbJQ=="
|
||||
},
|
||||
"timers-browserify": {
|
||||
"version": "2.0.10",
|
||||
|
||||
+2
-1
@@ -8,7 +8,8 @@
|
||||
"url": "https://github.com/FullScreenShenanigans/MenuGraphr/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"eightbittr": "^0.7.17"
|
||||
"eightbittr": "^0.7.17",
|
||||
"timehandlr": "^0.7.4"
|
||||
},
|
||||
"description": "In-game menu and dialog creation and management for EightBittr.",
|
||||
"devDependencies": {
|
||||
|
||||
+1
-1
@@ -1217,7 +1217,7 @@ export class MenuGraphr implements IMenuGraphr {
|
||||
this.deleteMenuChildren(name);
|
||||
|
||||
if (child.onMenuDelete) {
|
||||
child.onMenuDelete.call(this.eightBitter);
|
||||
child.onMenuDelete.call(this.eightBitter, this.eightBitter);
|
||||
}
|
||||
|
||||
if (child.children) {
|
||||
|
||||
Reference in New Issue
Block a user