hangglider #107

Merged
justliliandev merged 13 commits from feature/hangglider into dev/1.19.x 2023-03-03 20:01:02 +00:00
justliliandev commented 2023-02-12 10:55:13 +00:00 (Migrated from github.com)

Description

This adds the basics for datadriven hanggliders.
sadly the mixin refmap doesn't want to generate, so I've written it by hand, we should investigate why this happens, but I couldn't figure it out

Checklist:

  • My code follows the style guidelines of this project (.editorconfig, most IDEs will use this for you)
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
# Description This adds the basics for datadriven hanggliders. sadly the mixin refmap doesn't want to generate, so I've written it by hand, we should investigate why this happens, but I couldn't figure it out # Checklist: - [x] My code follows the style guidelines of this project (.editorconfig, most IDEs will use this for you) - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation
dphaldes (Migrated from github.com) requested changes 2023-02-20 12:02:15 +00:00
@ -0,0 +52,4 @@
if (player.isSpectator())
return;
Optional<GliderMovementInfo> gliderMovementInfoOpt = calculateGliderMovementInfo(player, true);
if (gliderMovementInfoOpt.isEmpty())
dphaldes (Migrated from github.com) commented 2023-02-20 12:01:38 +00:00

calculateGliderMovementInfo() triggers a client message even when glider is not equipped

`calculateGliderMovementInfo()` triggers a client message even when glider is not equipped
ferriarnus (Migrated from github.com) reviewed 2023-02-21 20:08:23 +00:00
ferriarnus (Migrated from github.com) left a comment

Only 2 small comments

Only 2 small comments
@ -99,5 +105,7 @@ public class EnderIO {
generator.addProvider(event.includeServer(), new EIOFluidTagsProvider(generator, event.getExistingFileHelper()));
ferriarnus (Migrated from github.com) commented 2023-02-19 22:24:49 +00:00

Should this move to a new init file?

Should this move to a new init file?
@ -84,7 +84,7 @@ public class EIOFluids {
private static FluidBuilder<? extends ForgeFlowingFluid, Registrate> baseFluid(String name) {
ferriarnus (Migrated from github.com) commented 2023-02-19 22:26:10 +00:00

maybe add a todo? Needs a fix in Registrate.

maybe add a todo? Needs a fix in Registrate.
justliliandev (Migrated from github.com) reviewed 2023-02-21 20:18:02 +00:00
@ -99,5 +105,7 @@ public class EnderIO {
generator.addProvider(event.includeServer(), new EIOFluidTagsProvider(generator, event.getExistingFileHelper()));
justliliandev (Migrated from github.com) commented 2023-02-21 20:18:02 +00:00

once we have more integrations/trigger sure, but I don't see the benefit for a single thing

once we have more integrations/trigger sure, but I don't see the benefit for a single thing
ferriarnus (Migrated from github.com) reviewed 2023-02-21 20:19:58 +00:00
@ -99,5 +105,7 @@ public class EnderIO {
generator.addProvider(event.includeServer(), new EIOFluidTagsProvider(generator, event.getExistingFileHelper()));
ferriarnus (Migrated from github.com) commented 2023-02-21 20:19:58 +00:00

I just found it seeing the trigger like that, but it doesn't really matter.

I just found it seeing the trigger like that, but it doesn't really matter.
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Team-EnderIO/EnderIO#107
No description provided.