Skip to content

Commit 44a6c59

Browse files
committed
Removed test for being connected to MUD
1 parent 9e32881 commit 44a6c59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/wait.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ end -- function match
154154
-- ----------------------------------------------------------
155155
function make (f)
156156
assert (type (f) == "function", "wait.make requires a function")
157-
assert (not (GetInfo (106) or GetInfo (107)), "Not connected to MUD")
158157
assert (GetOption ("enable_timers") == 1, "Timers not enabled")
159158
assert (GetOption ("enable_triggers") == 1, "Triggers not enabled")
160159
coroutine.wrap (f) () -- make coroutine, resume it
161-
end -- make
160+
end -- make
161+

0 commit comments

Comments
 (0)