From 5eb1cc39c40fd79312f0bb1cfc82741881b5051d Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Thu, 12 May 2011 09:52:46 +0000
Subject: [PATCH] Bloodcaller, the reward from the ring of blood, is not an
 arcane artifact anymore

git-svn-id: http://svn.net-core.org/repos/t-engine4@3342 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Object.lua                     | 1 +
 game/modules/tome/data/zones/ring-of-blood/objects.lua | 2 +-
 utils/release.sh                                       | 4 +---
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/game/modules/tome/class/Object.lua b/game/modules/tome/class/Object.lua
index 24d36ded57..4ee6aab34a 100644
--- a/game/modules/tome/class/Object.lua
+++ b/game/modules/tome/class/Object.lua
@@ -546,6 +546,7 @@ function _M:getDesc(name_param)
 		if self.power_source.nature then desc:add("Infused by ", {"color", "OLIVE_DRAB"}, "nature", {"color", "LAST"}, true) end
 		if self.power_source.antimagic then desc:add("Infused by ", {"color", "ORCHID"}, "arcane disrupting forces", {"color", "LAST"}, true) end
 		if self.power_source.technique then desc:add("Crafted by ", {"color", "LIGHT_UMBER"}, "a master", {"color", "LAST"}, true) end
+		if self.power_source.psionic then desc:add("Infused by ", {"color", "YELLOW"}, "psionic forces", {"color", "LAST"}, true) end
 		if self.power_source.unknown then desc:add("Powered by ", {"color", "CRIMSON"}, "unknown forces", {"color", "LAST"}, true) end
 	end
 
diff --git a/game/modules/tome/data/zones/ring-of-blood/objects.lua b/game/modules/tome/data/zones/ring-of-blood/objects.lua
index b9b827a508..cfda115e6b 100644
--- a/game/modules/tome/data/zones/ring-of-blood/objects.lua
+++ b/game/modules/tome/data/zones/ring-of-blood/objects.lua
@@ -20,7 +20,7 @@
 load("/data/general/objects/objects-maj-eyal.lua")
 
 newEntity{ base = "BASE_RING",
-	power_source = {arcane=true},
+	power_source = {psionic=true},
 	define_as = "RING_OF_BLOOD", rarity=false,
 	name = "Bloodcaller", unique=true,
 	desc = [[You won the Ring of Blood trial, this is your reward.]],
diff --git a/utils/release.sh b/utils/release.sh
index 02b4e3647d..d3c8c25d2d 100755
--- a/utils/release.sh
+++ b/utils/release.sh
@@ -26,7 +26,7 @@ mkdir t-engine4-linux32-"$ver"
 # src
 echo "******************** Src"
 cd t-engine4-src-"$ver"
-cp -a ../../bootstrap/  ../../game/ ../../C* ../../premake4.lua ../../src/ .
+cp -a ../../bootstrap/  ../../game/ ../../C* ../../premake4.lua ../../src/ ../../build/ ../../mac/  .
 rm -rf game/modules/angband
 rm -rf game/modules/rogue
 rm -rf game/modules/gruesome
@@ -48,7 +48,6 @@ tar cvjf t-engine4-src-"$ver".tar.bz2 t-engine4-src-"$ver"
 echo "******************** Windows"
 cd t-engine4-windows-"$ver"
 cp -a ../../bootstrap/  ../../game/ ../../C* ../../dlls/* .
-mv te4core-* game/engines/cores/
 find . -name '*~' -or -name '.svn' | xargs rm -rf
 rm -rf game/modules/angband
 rm -rf game/modules/rogue
@@ -60,7 +59,6 @@ zip -r -9 t-engine4-windows-"$ver".zip t-engine4-windows-"$ver"
 echo "******************** linux32"
 cd t-engine4-linux32-"$ver"
 cp -a ../../bootstrap/  ../../game/ ../../C* ../../linux-bin/* .
-mv te4core-* game/engines/cores/
 find . -name '*~' -or -name '.svn' | xargs rm -rf
 rm -rf game/modules/angband
 rm -rf game/modules/rogue
-- 
GitLab