Code Monkey home page Code Monkey logo

Comments (7)

deezl avatar deezl commented on June 18, 2024

ok, added info, it did not have to have the space or the period, a simple "/irc_msg deezl test" caused an immediate crash. This is only the latest in a series of bugs we have been experiencing with the irc and irc_commands mods. I will open a seperate issue for the other major one.

from irc.

ShadowNinja avatar ShadowNinja commented on June 18, 2024

Related to minetest-mods/irc_commands#2.

I'm not sure what causes this. Can you break up the relevant line into a few lines to find out exactly what is nil? This might be caused by an old and/or buggy version of LuaIRC.

from irc.

deezl avatar deezl commented on June 18, 2024

I'm not entirely sure what you are asking about breaking up the relevant line into a few lines. The odd part about this issue, is that there are 3 other servers on the same machine, running the same version of the mod (although one is running current git of minetest_game, another is running carbone, and yet another is running a slightly older version of minetest_game) yet they do not have the same problem. Have attempted deleting and re- git pulling the irc and irc_commands mods, to no avail.

from irc.

ShadowNinja avatar ShadowNinja commented on June 18, 2024

@deezl: Like so:

for nick, user in pairs(irc.conn.channels[irc.config.channel].users) do
-- Becomes:
local conn = irc.conn
assert(conn, "Connection is nil")
local chans = conn.channels
assert(chans, "Channels are nil")
local cfg = irc.config
assert(cfg, "Configuration is nil")
local chan = chans[cfg.channel]
assert(chan, "Channel is nil")
for user, nick in pairs(chan.users) do

from irc.

kaeza avatar kaeza commented on June 18, 2024

Is this still a problem?

from irc.

deezl avatar deezl commented on June 18, 2024

wow, I had actually forgotten about this bug. I haven't been on that server in quite a long time, so I'm not sure if it's still an active issue. It has been moved around to different IRC servers a few times now, I will check with the current owner to see if this has been a problem since.

from irc.

kaeza avatar kaeza commented on June 18, 2024

@deezl Any news?

from irc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.