From 3d2abd1bb4d7147903f9416bb62d32cbb4de6413 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 14 Feb 2015 03:22:32 +0100 Subject: [PATCH] Set default teleport cost to 200 --- README.txt | 2 +- init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index 2ed98a6..5b3b6ae 100644 --- a/README.txt +++ b/README.txt @@ -17,7 +17,7 @@ Initially, a mirror has no teleport location set, so you have to set it before t If the Mana mod [mana] is present, setting and teleporting costs mana. The default cost are: * Setting: 20 -* Teleporting back to set position: 100 +* Teleporting back to set position: 200 ## Configuration You can change the mana costs via minetest.conf. The following settings are used: diff --git a/init.lua b/init.lua index 7b15e05..9ea3218 100644 --- a/init.lua +++ b/init.lua @@ -1,5 +1,5 @@ returnmirror = {} -returnmirror.cost_teleport = 100 +returnmirror.cost_teleport = 200 returnmirror.cost_set = 20 if tonumber(minetest.setting_get("returnmirror_cost_teleport")) ~= nil then