Changeset 3336
- Timestamp:
- 12/01/08 01:03:58 (5 weeks ago)
- Location:
- trunk/mods/ca/LuaRules/Gadgets
- Files:
-
- 3 modified
-
awards.lua (modified) (1 diff)
-
unit_morph.lua (modified) (1 diff)
-
unit_start_boost.lua (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mods/ca/LuaRules/Gadgets/awards.lua
r3335 r3336 517 517 -- planetwars init 518 518 local modOptions = Spring.GetModOptions() 519 if (modOptions) and modOptions.planetwars then519 if (modOptions) and modOptions.planetwars and modOptions.planetwars ~= '' then 520 520 local optionsRaw = modOptions.planetwars 521 521 optionsRaw = string.gsub(optionsRaw, '_', '=') -
trunk/mods/ca/LuaRules/Gadgets/unit_morph.lua
r3335 r3336 494 494 GG['morphHandler'].AddExtraUnitMorph = AddExtraUnitMorph 495 495 local modOptions = Spring.GetModOptions() 496 if (modOptions) and modOptions.planetwars then496 if (modOptions) and modOptions.planetwars and modOptions.planetwars ~= '' then 497 497 local optionsRaw = modOptions.planetwars 498 498 optionsRaw = string.gsub(optionsRaw, '_', '=') -
trunk/mods/ca/LuaRules/Gadgets/unit_start_boost.lua
r3333 r3336 189 189 end 190 190 191 192 191 end