Software / code / verse
Comparison
plugins/groupchat.lua @ 418:40b8cc364274
verse.plugins.groupchat: Fix import of util.events
It probably worked before because of module()
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 20 May 2018 01:24:39 +0200 |
| parent | 380:0891b4e27766 |
| child | 435:cf31a5ef8a9b |
comparison
equal
deleted
inserted
replaced
| 417:d46a502955c0 | 418:40b8cc364274 |
|---|---|
| 1 local verse = require "verse"; | 1 local verse = require "verse"; |
| 2 local events = require "events"; | 2 local events = require "util.events"; |
| 3 local jid = require "util.jid"; | 3 local jid = require "util.jid"; |
| 4 | 4 |
| 5 local room_mt = {}; | 5 local room_mt = {}; |
| 6 room_mt.__index = room_mt; | 6 room_mt.__index = room_mt; |
| 7 | 7 |