Skip to content

Commit

Permalink
You know, after swapping two function names over, it REALLY helps to …
Browse files Browse the repository at this point in the history
…not create infinite recursion
  • Loading branch information
Rosuav committed Jul 20, 2024
1 parent 9860628 commit 040bf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/twitch_apis.pike
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ void whisper(object channel, string voiceid, string msg, mapping tok) {
}
@"user:manage:whispers":
@"Whisper a message to a user -> username message":
void w(object c, string v, string m, mapping t) {w(c, v, m, t);}
void w(object c, string v, string m, mapping t) {whisper(c, v, m, t);}

@"channel:edit:commercial":
@"Start an ad break -> [length]":
Expand Down

0 comments on commit 040bf67

Please sign in to comment.