Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
I'm dumb -- forgot to save the last change
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianDicken committed Jun 22, 2022
1 parent 198a9b2 commit 1cfabd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/__class_Broadcast/__class_Broadcast.gml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Broadcast(callback, scope = undefined) {
function Broadcast(callback = undefined, scope = undefined) {
static __pool = function() {
global.__broadcast_pool = ds_stack_create();
return global.__broadcast_pool;
Expand Down
2 changes: 1 addition & 1 deletion scripts/__class_Consumer/__class_Consumer.gml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Consumer(callback, scope = undefined) {
function Consumer(callback = undefined, scope = undefined) {
static __pool = function() {
global.__consumer_pool = ds_stack_create();
return global.__consumer_pool;
Expand Down
2 changes: 1 addition & 1 deletion scripts/__class_Subscriber/__class_Subscriber.gml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Subscriber(callback, scope = undefined) {
function Subscriber(callback = undefined, scope = undefined) {
static __pool = function() {
global.__subscriber_pool = ds_stack_create();
return global.__subscriber_pool;
Expand Down

0 comments on commit 1cfabd2

Please sign in to comment.