put in folder

This commit is contained in:
Lilian Jónsdóttir 2020-07-19 13:54:57 -07:00
parent 3b0a5b5735
commit f2e3846fe1
5 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
local keys = require("Keyboard Layout Changer.keys")
local keys = require("celediel.Keyboard Layout Changer.keys")
local supportedLayouts = ""
for name, _ in pairs(keys) do supportedLayouts = supportedLayouts .. name .. " " end

View file

@ -1,4 +1,4 @@
local common = require("Keyboard Layout Changer.common")
local common = require("celediel.Keyboard Layout Changer.common")
local this = {}

View file

@ -1,5 +1,5 @@
local common = require("Keyboard Layout Changer.common")
local config = require("Keyboard Layout Changer.config").getConfig()
local common = require("celediel.Keyboard Layout Changer.common")
local config = require("celediel.Keyboard Layout Changer.config").getConfig()
local function onInitialized()
if common.changedLayout(config.keyboardLayout) then
@ -10,5 +10,5 @@ end
event.register("initialized", onInitialized)
event.register("modConfigReady", function()
mwse.mcm.register(require("Keyboard Layout Changer.mcm"))
mwse.mcm.register(require("celediel.Keyboard Layout Changer.mcm"))
end)

View file

@ -1,6 +1,6 @@
local keys = require("Keyboard Layout Changer.keys")
local common = require("Keyboard Layout Changer.common")
local config = require("Keyboard Layout Changer.config").getConfig()
local keys = require("celediel.Keyboard Layout Changer.keys")
local common = require("celediel.Keyboard Layout Changer.common")
local config = require("celediel.Keyboard Layout Changer.config").getConfig()
local restartMessage = "Restart the game or click the Apply button to apply changes."