Add right-click use for mana flasks - right-click while holding a mana flask to charge the emptiest item from the hotbar, offhand or armour slots

This commit is contained in:
Electroblob77
2020-05-17 00:04:38 +01:00
parent e09f9313f9
commit ef39757229
4 changed files with 48 additions and 1 deletions
@@ -71,4 +71,10 @@ public interface IManaStoringItem {
default boolean isManaEmpty(ItemStack stack){
return getMana(stack) == 0;
}
/** Returns how full the given stack's mana is, as a fraction between 0 (empty) and 1 (full) */
default float getFullness(ItemStack stack){
return (float)getMana(stack) / getManaCapacity(stack);
}
}