mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-17 19:14:15 +01:00
Merge branch 'master' of https://github.com/tgstation/tgstation into upstream-23-10-2025
This commit is contained in:
@@ -56,7 +56,7 @@
|
||||
carbon_target = target
|
||||
visible_items = carbon_target.get_visible_items()
|
||||
else
|
||||
visible_items = target.get_equipped_items()
|
||||
visible_items = target.get_equipped_items(INCLUDE_HELD)
|
||||
|
||||
visible_items -= src // the multitool cannot mark itself.
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
return
|
||||
|
||||
var/atom/movable/chosen = locate(picked_ref)
|
||||
if(chosen == target || (chosen in (carbon_target ? carbon_target.get_visible_items() : target.get_equipped_items())))
|
||||
if(chosen == target || (chosen in (carbon_target ? carbon_target.get_visible_items() : target.get_equipped_items(INCLUDE_HELD))))
|
||||
mark_target(chosen)
|
||||
else
|
||||
balloon_alert(user, "cannot mark entity")
|
||||
|
||||
Reference in New Issue
Block a user