mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
[MIRROR] Properly checks flags with & instead of == [MDB IGNORE] (#16487)
* Properly checks flags with & instead of == * merge fixed for changeling * skyrat equipment updated Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: Tastyfish <crazychris32@gmail.com>
This commit is contained in:
co-authored by
John Willard
Tastyfish
parent
de331bbe60
commit
32db6d2411
@@ -23,7 +23,7 @@
|
||||
teleport.button_icon_state = icon_state
|
||||
|
||||
/obj/item/teleportation_scroll/item_action_slot_check(slot, mob/user)
|
||||
return (slot == ITEM_SLOT_HANDS)
|
||||
return (slot & ITEM_SLOT_HANDS)
|
||||
|
||||
/obj/item/teleportation_scroll/apprentice
|
||||
name = "lesser scroll of teleportation"
|
||||
|
||||
Reference in New Issue
Block a user