Attached Files |
1.png [^] (436,414 bytes) 2014-06-15 14:42
2.png [^] (395,222 bytes) 2014-06-15 14:43
3.png [^] (564,189 bytes) 2014-06-15 14:43
4.png [^] (433,597 bytes) 2014-06-15 14:43
telefix.patch [^] (1,039 bytes) 2014-06-15 15:17 [Show Content] [Hide Content]commit 0113e5ef40974a6986dfea455c44474c0569224f
Author: Corin Buchanan-Howland <corin@buchananhowland.net>
Date: Sun Jun 15 09:16:42 2014 -0400
Remove ability to teleport from rings of protection
A bad parenthesis gave rings of protection the ring of teleportation ability. This fixes that.
diff --git a/crawl-ref/source/ability.cc b/crawl-ref/source/ability.cc
index 0e4da1d..e16c5b5 100644
--- a/crawl-ref/source/ability.cc
+++ b/crawl-ref/source/ability.cc
@@ -3661,8 +3661,8 @@ vector<talent> your_talents(bool check_confused, bool include_unusable)
if (you.evokable_jump() && !player_mutation_level(MUT_NO_ARTIFICE))
_add_talent(talents, ABIL_EVOKE_JUMP, check_confused);
- if (you.wearing(EQ_RINGS, RING_TELEPORTATION
- && !player_mutation_level(MUT_NO_ARTIFICE))
+ if (you.wearing(EQ_RINGS, RING_TELEPORTATION)
+ && !player_mutation_level(MUT_NO_ARTIFICE)
&& !crawl_state.game_is_sprint())
{
_add_talent(talents, ABIL_EVOKE_TELEPORTATION, check_confused);
|