Conversation
resolves three conflicts: - power.java: trivial whitespace - setregistry.java: kept both miles + moonknight registrations - suititem.java: kept master's data attachment + iswearing gate, dropped branch's chest-only path - milessuit.java: dropped a getanimationinfo override using a non-existent enum (AnimationInfo.RenderType.TORSO_HEAD); the default ClientSuit.getAnimationInfo handles per-slot visibility correctly
…cs, ceiling invert replaces the placeholder wallclimbpower with the proper sneak-to-attach pattern: - new util/wallcrawldata: serializable per-player state (side direction, attach timer, ceiling invert timer) stored on the suit-data attachment so it auto-syncs to clients via the existing s2c chain - wallclimbpower now extends power directly (was togglepower<equipsoundsupplier> which didnt fit). server tick: detect attach via ground+sneak+raycast against 5 candidate sides (n/s/e/w/ceiling, range 1.5b); detect detach via jump (synced through the existing keybind packet) or landing on the floor. while attached, applies a small velocity bias toward the wall to keep the player stuck. - new mixin/client/wallcrawlrenderermixin injects at tail of livingentityrenderer.setuptransforms. while inverttimer > 0 (player attached to a ceiling), interpolates a 180-deg rotation around z plus a height translation so the player flips upside-down smoothly. wall-side tilt (player rotated 90 to lie against vertical walls) is mechanical-only for now; visual tilt for vertical walls is a follow-up. - mixin registered in timeless.mixins.json
v0.2 only treats http 200 as success. discord webhooks with file attachments return 204 (no content) which the action raised as `Failed to send webhook: 204`. half the recent runs flagged failed for this reason. v0.3 explicitly accepts 204 (one-line change in webhook.ts: `== 200` -> `== 200 || == 204`). pinned to its commit sha for the same supply-chain reason as the v0.2 pin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.