mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-12-22 07:28:57 -05:00
Part of issue #67 fix.
This commit is contained in:
parent
150b0cb814
commit
a7cc11f9a5
@ -132,7 +132,20 @@ public class Formulae {
|
||||
}
|
||||
return 1.0D;
|
||||
}
|
||||
|
||||
public static int[] getBoltIDs() {
|
||||
final int[] freeBolts = {190};
|
||||
if(!Config.members) {
|
||||
return freeBolts;
|
||||
}
|
||||
return boltIDs;
|
||||
}
|
||||
public static int[] getArrowIDs() {
|
||||
final int[] freeArrows = {11};
|
||||
if(!Config.members) {
|
||||
return freeArrows;
|
||||
}
|
||||
return boltIDs;
|
||||
}
|
||||
/**
|
||||
* Returns a power to assosiate with each arrow
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user