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

[Fix] Unpunchable Mouse Bug #1922

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

AlgumCorrupto
Copy link
Contributor

@AlgumCorrupto AlgumCorrupto commented Mar 10, 2025

Description

Fix bug that causes mice not be punchable, take 2.
As described by this issue.


Media

2025-03-10.13-31-09.mp4


Changelog

🆑

  • fix: Now you can punch mice!

Copy link
Contributor

coderabbitai bot commented Mar 10, 2025

Walkthrough

The pull request modifies the logic in the OnCombatModeShouldHandInteract method of the mob state system to prioritize hand interactions based on the mob's state. The changes introduce a new boolean field, AllowHandInteractWhileAlive, to the MobStateComponent class, allowing for configuration of hand interactions while the mob is alive. No alterations were made to public or exported entities.

Changes

File(s) Change Summary
Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs Modified OnCombatModeShouldHandInteract to prioritize Critical state and allow hand interactions based on new conditions.
Content.Shared/Mobs/Components/MobStateComponent.cs Added new boolean field AllowHandInteractWhileAlive initialized to false for configuring hand interactions in the Alive state.

Suggested reviewers

  • Remuchi
  • sleepyyapril
  • VMSolidus

Poem

In the code of our fleet, a new light does shine,
With states realigned, our logic's divine.
Alive and critical, hand interactions flow,
A streamlined approach, watch our efficiency grow!
Hail to the changes, in unity we stand,
For the freedom of code, we’ll always command!


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 01c560a and e6feebd.

📒 Files selected for processing (1)
  • Content.Shared/Mobs/Components/MobStateComponent.cs (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • Content.Shared/Mobs/Components/MobStateComponent.cs
⏰ Context from checks skipped due to timeout of 90000ms (6)
  • GitHub Check: build (ubuntu-latest)
  • GitHub Check: Test Packaging
  • GitHub Check: build (ubuntu-latest)
  • GitHub Check: YAML map schema validator
  • GitHub Check: YAML Linter
  • GitHub Check: YAML RGA schema validator

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added Status: Needs Review Someone please review this Changes: C# Changes any cs files Changes: YML Changes any yml files labels Mar 10, 2025
@SimpleStation14 SimpleStation14 changed the title [Fix] Unpunchable mouse bug [Fix] Unpunchable Mouse Bug Mar 10, 2025
@DEATHB4DEFEAT
Copy link
Member

why make another pr?

@AlgumCorrupto
Copy link
Contributor Author

AlgumCorrupto commented Mar 10, 2025

Because the last one's code had bad formatting and the tests failed

@DEATHB4DEFEAT
Copy link
Member

you can edit the last one

@AlgumCorrupto
Copy link
Contributor Author

Okay, I didn't know.

@SolarisBirb
Copy link
Contributor

Ack Heisen test. Random crash, nothing wrong with your code it just does that sometimes. You did pass 359 others though.

@AlgumCorrupto
Copy link
Contributor Author

okay, just got home, the code seems to be working just fine at least for me.

Copy link
Member

@VMSolidus VMSolidus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mind explaining why you're bulldozing the Mobstate checks? These actually do exist for a reason.

@AlgumCorrupto
Copy link
Contributor Author

That's the reason why it's impossible punch mice.
What is the reason for these existing anyway?
I could simply move the mobstate checks to the bottom of the code if that works, something like:

        // Disallow empty-hand-interacting in combat mode
        // for non-dead mobs
        if (!IsDead(uid, component))
            args.Cancelled = true;

        if (component.CurrentState is MobState.Alive
            || component.CurrentState is MobState.Critical
            && component.AllowHandInteractWhileCrit
            || component.CurrentState is MobState.SoftCritical
            && component.AllowHandInteractWhileSoftCrit
            || component.CurrentState is MobState.Dead
            && component.AllowHandInteractWhileDead)
            return;

        args.Cancelled = true;

@AlgumCorrupto
Copy link
Contributor Author

wait hold on, i think i know a way of doing this without nuking this code, give me a minute

@AlgumCorrupto AlgumCorrupto force-pushed the unpunchable-mouse-bug branch from 2d5e231 to 1dac999 Compare March 11, 2025 21:42
@AlgumCorrupto
Copy link
Contributor Author

AlgumCorrupto commented Mar 11, 2025

I managed to do it using another way but its causing visual glitching (i think it's here even before I touched this code), it's causing the harm animation to play without the target being damaged. I should flag this as an issue.

I just edited the PR.

2025-03-11.18-37-11.mp4

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2d5e231 and 1dac999.

📒 Files selected for processing (2)
  • Content.Shared/Mobs/Components/MobStateComponent.cs (1 hunks)
  • Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (6)
  • GitHub Check: build (ubuntu-latest)
  • GitHub Check: YAML map schema validator
  • GitHub Check: Test Packaging
  • GitHub Check: build (ubuntu-latest)
  • GitHub Check: YAML Linter
  • GitHub Check: Label
🔇 Additional comments (2)
Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs (2)

249-257: Battle-ready code detected! Permission to punch granted!

By the Republic's honor, this code change looks ship-shape! The modification to OnCombatModeShouldHandInteract successfully adds the necessary condition to allow hand interactions when a mob is in the Alive state, properly checking the new AllowHandInteractWhileAlive property.

The logic follows the established pattern of the existing code, maintaining consistent structure with the other state checks. This change effectively addresses the "Unpunchable Mouse Bug" by allowing mice to be punched when they're alive - a victory for the Biesel Republic and all space travelers who hate space vermin!


1-1: Minor import change - all systems nominal!

The adjustment to the import for Content.Shared.Bed.Sleep appears to be merely moving it to the top of the list. This doesn't impact functionality and seems to be a trivial change.

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Signed-off-by: Paulo Artur Pinheiro Viana Villaça <112904295+AlgumCorrupto@users.noreply.github.com>
Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com>
Signed-off-by: Paulo Artur Pinheiro Viana Villaça <112904295+AlgumCorrupto@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Changes: C# Changes any cs files Changes: YML Changes any yml files Status: Needs Review Someone please review this
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants