1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 20:06:38 +02:00

Added hostnames associeted to nicks in plugins/scripts

This commit is contained in:
Emmanuel Bouthenot
2006-04-08 21:03:31 +00:00
parent c525b231e4
commit 1f03444a6b
12 changed files with 26 additions and 4 deletions
+4
View File
@@ -1488,6 +1488,10 @@ weechat_lua_get_nick_info (lua_State *L)
lua_pushstring (lua_current_interpreter, "flags");
lua_pushnumber (lua_current_interpreter, ptr_nick->flags);
lua_rawset (lua_current_interpreter, -3);
lua_pushstring (lua_current_interpreter, "host");
lua_pushstring (lua_current_interpreter, ptr_nick->host);
lua_rawset (lua_current_interpreter, -3);
lua_rawset (lua_current_interpreter, -3);
}