Skip to content

Commit

Permalink
release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
otomay committed Jan 14, 2024
1 parent 5fb094d commit 5391ee6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modinfo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Implementa um sistema de economia no jogo atraves da disponibilizacao de uma loj
- Permitir desintegracao de itens preciosos nao afeta itens unicos e obrigatorios para o andamento do jogo, como os altares da lua
]]
author = "Otomai"
version = "1.2.1"
version = "1.2.2"

forumthread = ""
api_version = 10
Expand Down
2 changes: 1 addition & 1 deletion modinfo_en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It implements an in-game economy system through the provision of a store (in-gam
- Allowing precious items to disintegrate does not affect unique and mandatory items for the game progress, such as moon altars
]]
author = "Otomai"
version = "1.2.1"
version = "1.2.2"

forumthread = ""
api_version = 10
Expand Down
4 changes: 2 additions & 2 deletions modmain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ local RECIPETABS = GLOBAL.RECIPETABS
local TECH = GLOBAL.TECH

local LAN_ = GetModConfigData('Language')
if (LAN_ == 3 or LAN_ = true) then
if LAN_ == 3 then
require 'SEscripts/strings_cn'
TUNING.SElan = "cn"
elseif LAN_ == 2 then
require 'SEscripts/strings_en'
TUNING.SElan = "en"
elseif LAN_ == 1 or LAN_ = false then
elseif LAN_ == 1 then
require 'SEscripts/strings_ptbr'
TUNING.SElan = "en"
end
Expand Down

0 comments on commit 5391ee6

Please sign in to comment.