forked from Jorbon/cool_elytra
-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
198 additions
and
264 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
- As an exception to existing limitations, thrusting will now be allowed when the player is an operator on a Realm. | ||
This does not apply to normal servers. | ||
- Changed the default toggle keybind to I to avoid conflicting with the advancements button. | ||
- Fixed an incompatibility with Keybind Fix. | ||
- Separated 1.20 and 1.20.2 support into separate jars. | ||
- Added support for Forge & NeoForge 1.20.1. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
21 changes: 0 additions & 21 deletions
21
common/src/main/java/nl/enjarai/doabarrelroll/fabric/DoABarrelRollFabricClient.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,11 @@ | ||
package nl.enjarai.doabarrelroll.fabric; | ||
|
||
import net.fabricmc.api.ClientModInitializer; | ||
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents; | ||
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper; | ||
import nl.enjarai.doabarrelroll.DoABarrelRollClient; | ||
import nl.enjarai.doabarrelroll.ModKeybindings; | ||
import nl.enjarai.doabarrelroll.config.ModConfig; | ||
import nl.enjarai.doabarrelroll.fabric.net.HandshakeClientFabric; | ||
import nl.enjarai.doabarrelroll.util.StarFoxUtil; | ||
|
||
public class DoABarrelRollFabricClient implements ClientModInitializer { | ||
@Override | ||
public void onInitializeClient() { | ||
DoABarrelRollClient.init(); | ||
|
||
ModConfig.touch(); | ||
HandshakeClientFabric.init(); | ||
|
||
// Register keybindings on fabric | ||
ModKeybindings.FABRIC.forEach(KeyBindingHelper::registerKeyBinding); | ||
|
||
// Init barrel rollery. | ||
StarFoxUtil.register(); | ||
|
||
ClientTickEvents.END_CLIENT_TICK.register(client -> { | ||
ModKeybindings.clientTick(client); | ||
|
||
StarFoxUtil.clientTick(client); | ||
}); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.