diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-05-22 12:16:53 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-05-22 12:16:53 +0000 |
commit | 06357f023f43f859e1a048e13e72d4531185a400 (patch) | |
tree | a0b4d5dfbd9782ec606677b11c0de18766863e0f /Lua/game/plugins | |
parent | 3204a4cbcc0ef43322c49c75c04be306b40c2ceb (diff) | |
download | usdx-06357f023f43f859e1a048e13e72d4531185a400.tar.gz usdx-06357f023f43f859e1a048e13e72d4531185a400.tar.xz usdx-06357f023f43f859e1a048e13e72d4531185a400.zip |
added missing local declaration
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1758 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Lua/game/plugins/duel.usdx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lua/game/plugins/duel.usdx b/Lua/game/plugins/duel.usdx index 5321f395..63fefc8f 100644 --- a/Lua/game/plugins/duel.usdx +++ b/Lua/game/plugins/duel.usdx @@ -3,7 +3,7 @@ function plugin_init() require('Usdx.Party')
- Mode = {}
+ local Mode = {}
Mode.Name = 'Duel'
Mode.CanNonParty = true;
@@ -11,7 +11,5 @@ function plugin_init() Usdx.Party.Register(Mode)
- Mode = nil;
-
return true;
end
\ No newline at end of file |