Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroksl committed Jan 10, 2025
1 parent 39cbc8d commit a5f1f5c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
- Fixed level emitters not working with the quantum computer
# New
- Added the Import Export Bus. A bus part capable of importing and exporting at the same time
- Filtered import for Advanced Pattern Providers. You can enable this setting to only allow inputs of active patterns/patterns present in the pattern provider.

# Bug Fixes
- Fixed quantum armor auto stock card not working
- ME Stock Export Bus behavior changed to be able to set stack sizes bigger than 64 (up to Max Int).
- Fixed removing the quantum chestplate not removing flight ability from the player
- Minor issues fixed in the quantum armor config ui
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ protected void appendExtraHoverText(
lines.add(AAEText.QuantumArmorStableFootingTooltip.text().withStyle(Tooltips.NUMBER_TEXT));
}


@Override
public void inventoryTick(ItemStack stack, Level level, Entity entity, int slotId, boolean isSelected) {
if (entity instanceof Player player) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public static void playerTickStart(TickEvent.PlayerTickEvent event) {

Player player = event.player;

if (!(player.getItemBySlot(EquipmentSlot.CHEST).getItem() instanceof QuantumArmorBase) && player.getPersistentData().getBoolean("aaeFlightCard")) {
if (!(player.getItemBySlot(EquipmentSlot.CHEST).getItem() instanceof QuantumArmorBase)
&& player.getPersistentData().getBoolean("aaeFlightCard")) {
player.getAbilities().mayfly = false;
player.getAbilities().flying = false;
player.getPersistentData().remove("aaeFlightCard");
Expand Down

0 comments on commit a5f1f5c

Please sign in to comment.