-
Notifications
You must be signed in to change notification settings - Fork 246
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
base: master
Are you sure you want to change the base?
[Fix] Unpunchable Mouse Bug #1922
Conversation
WalkthroughThe pull request modifies the logic in the Changes
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (6)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
why make another pr? |
Because the last one's code had bad formatting and the tests failed |
you can edit the last one |
Okay, I didn't know. |
Ack Heisen test. Random crash, nothing wrong with your code it just does that sometimes. You did pass 359 others though. |
okay, just got home, the code seems to be working just fine at least for me. |
There was a problem hiding this 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.
That's the reason why it's impossible punch mice. // 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; |
wait hold on, i think i know a way of doing this without nuking this code, give me a minute |
2d5e231
to
1dac999
Compare
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 |
There was a problem hiding this 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
📒 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 newAllowHandInteractWhileAlive
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>
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
🆑