diff locale/enUS.lua @ 45:38ee32135d86

moved locale return clause to head
author Flick <flickerstreak@gmail.com>
date Thu, 03 Apr 2008 23:18:45 +0000
parents 2232b8336903
children aa0b7fd68462
line wrap: on
line diff
--- a/locale/enUS.lua	Thu Apr 03 23:17:47 2008 +0000
+++ b/locale/enUS.lua	Thu Apr 03 23:18:45 2008 +0000
@@ -1,5 +1,5 @@
 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
-if L then
+if not L then return end
 
 -- bindings.lua
 L["ReAction"] = true
@@ -51,5 +51,3 @@
 
 -- modules/ReAction_State
 L["Dynamic Behavior"] = true
-
-end