diff options
author | blert2112 <cdilts@bellsouth.net> | 2015-07-26 12:53:55 -0400 |
---|---|---|
committer | blert2112 <cdilts@bellsouth.net> | 2015-07-26 12:53:55 -0400 |
commit | 027db04a2696a32e74a1bccc9a69b1238c245852 (patch) | |
tree | 472b0e86fec75d48cc69271fd341e56b095f8e84 | |
parent | aa17c0dd1f6e8f1ba7a7ecd17a1da3f6954859f1 (diff) |
croc settings load fix
-rw-r--r-- | mobs_crocs/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobs_crocs/init.lua b/mobs_crocs/init.lua index 9c36cd0..536ba58 100644 --- a/mobs_crocs/init.lua +++ b/mobs_crocs/init.lua @@ -19,7 +19,7 @@ if mobs.mod and mobs.mod == "redo" then local l_spawn_chance = 60000 -- load settings - dofile(minetest.get_modpath("mobs_crocs").."\\SETTINGS.txt") + dofile(minetest.get_modpath("mobs_crocs").."/SETTINGS.txt") if not ENABLE_WALKERS then l_spawn_chance = l_spawn_chance - 20000 end |