Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes "Cannot Examine" #6613

Merged
merged 1 commit into from
Jul 6, 2024
Merged

Conversation

Doubleumc
Copy link
Contributor

@Doubleumc Doubleumc commented Jul 4, 2024

About the pull request

Fixes #6612 . More accurately, not being able to examine interface buttons is normal, its that the right-click Examine option appeared in the first place was the issue.

A recent change adjusted what objects right-click Examine appears for:
https://github.com/cmss13-devs/cmss13/pull/6591/files#diff-574e8bc8332bd8c31272b0986d27302f529a6414a8011ae367b178a46284dc57L487-R487

Before, with view() (effectively view(usr)):
Examine verb only visible on objects in-world & visible to the usr's mob, within default view range. Examine works on all these objects. The option to Examine interface items did not exist. If client's view range is longer than the default, Examine does not appear as an option on objects beyond that range.

After, with view(client) (effectively view(src.client)):
Examine verb visible on any object the client can see out to the client's view range, including nullspace objects like interface buttons. Examine only works on in-world objects, and produces weird content in the command bar for nullspace objects and inventory items.

The way a verb's in view(...) works is super bespoke. I can't find a way for it to work with a user's dynamic view range and exclude interface items. Closest I can come is:

  • in view(28, usr) : works as in Before, but will work out to a range of 28 (highest view range in the codebase)
  • in world : works on all objects anywhere, even interface buttons (which aren't really meant to be examined and have descriptions like "That's Minimap.")

I went with view(28, usr) in order to more closely match the previous functionality.

Explain why it's good for the game

The right-click Examine option should not appear for objects that were never intended to be examined.

Testing Photographs and Procedure

Right-click Examine exists and works on world objects and inventory items, out to a ghost's maximum zoom out (view range 28). Does not exist for interface buttons.

Changelog

🆑
fix: right-click Examine no longer appears for interface buttons
/:cl:

@github-actions github-actions bot added the Fix Fix one bug, make ten more label Jul 4, 2024
@harryob harryob added this pull request to the merge queue Jul 6, 2024
Merged via the queue into cmss13-devs:master with commit 6607d72 Jul 6, 2024
28 checks passed
cm13-github added a commit that referenced this pull request Jul 6, 2024
@Doubleumc Doubleumc deleted the fixes-examine branch July 6, 2024 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Fix Fix one bug, make ten more
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Cannot Examine
2 participants