remove unneeded extra key in ini call

This commit is contained in:
p.kosyh 2010-01-20 13:20:42 +00:00
parent 632ed4adb5
commit 0744be6be5
2 changed files with 1 additions and 2 deletions

1
debian/changelog vendored
View file

@ -5,7 +5,6 @@ instead (1.0.6) unstable; urgency=low
* cleanups in stead.lua;
* doc updates;
* alt-r in debug mode (restart game);
* extra arg in :ini
* -version arg
-- Peter Kosyh <p.kosyh@gmail.com> Thu, 14 Jan 2010 15:47:50 +0300

View file

@ -1221,7 +1221,7 @@ function do_ini(self)
v.key_name = k;
end
local function call_ini(k, v)
call(v, 'ini', k);
call(v, 'ini');
end
math.randomseed(tonumber(os.date("%m%d%H%M%S")))