Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 52e7b18

Browse files
committed
fix tk
1 parent c67c528 commit 52e7b18

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

code/modules/psionics/equipment/psipower_tk.dm

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
/obj/item/psychic_power/telekinesis/process()
1212
if(!focus || !isturf(focus.loc) || !valid_distance(owner, focus))
1313
qdel(src)
14-
return
15-
. = ..()
14+
else if(!owner || loc != owner || !(src in owner.held_items))
15+
if(ishuman(loc))
16+
var/mob/living/carbon/human/host = loc
17+
host.remove_embedded_object(src)
18+
qdel(src)
1619

1720
/obj/item/psychic_power/telekinesis/proc/set_focus(atom/movable/_focus)
1821

code/modules/psionics/faculties/psychokenisis.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
name = "Telekinesis"
9797
cost = 5
9898
cooldown = 1 SECONDS
99-
min_rank = PSI_RANK_GRANDMASTER
99+
min_rank = PSI_RANK_MASTER
100100
icon_state = "psy_tele"
101101
use_description = "Activate the power with the 'use' key (initially bound to Z) in an empty hand, to manifest a psychokinetic grip. Use it manipulate objects at a distance."
102102
admin_log = FALSE

0 commit comments

Comments
 (0)