mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Rename CommandContext.channelName -> channel_name on lua side
This commit is contained in:
parent
debd7aaa51
commit
92ef5e35a7
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ StackIdx push(lua_State *L, const CommandContext &ctx)
|
||||||
push(L, ctx.words);
|
push(L, ctx.words);
|
||||||
lua_setfield(L, outIdx, "words");
|
lua_setfield(L, outIdx, "words");
|
||||||
push(L, ctx.channel->getName());
|
push(L, ctx.channel->getName());
|
||||||
lua_setfield(L, outIdx, "channelName");
|
lua_setfield(L, outIdx, "channel_name");
|
||||||
|
|
||||||
return outIdx;
|
return outIdx;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue