mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-12 11:21:29 +01:00
Revert "Hopefully display correct amounts on objective completion"
This reverts commit a6d101329d
.
And added other changes.
This commit is contained in:
parent
a6d101329d
commit
946fccaaa6
@ -1457,6 +1457,7 @@ public class Quester {
|
|||||||
getQuestData(quest).itemsEnchanted.put(entry.getKey(), num);
|
getQuestData(quest).itemsEnchanted.put(entry.getKey(), num);
|
||||||
if (num.equals(entry2.getValue())) {
|
if (num.equals(entry2.getValue())) {
|
||||||
final ItemStack finalToEnchant = new ItemStack(m, entry.getValue());
|
final ItemStack finalToEnchant = new ItemStack(m, entry.getValue());
|
||||||
|
|
||||||
finishObjective(quest, "enchantItem", new ItemStack(m, 1), finalToEnchant, e, null, null, null, null, null, null, null);
|
finishObjective(quest, "enchantItem", new ItemStack(m, 1), finalToEnchant, e, null, null, null, null, null, null, null);
|
||||||
|
|
||||||
// Multiplayer
|
// Multiplayer
|
||||||
@ -1526,7 +1527,8 @@ public class Quester {
|
|||||||
* @param quest The quest for which the fish is being caught
|
* @param quest The quest for which the fish is being caught
|
||||||
*/
|
*/
|
||||||
public void catchFish(Quest quest) {
|
public void catchFish(Quest quest) {
|
||||||
if (getQuestData(quest).getFishCaught() < getCurrentStage(quest).fishToCatch) {
|
final int fishToCatch = getCurrentStage(quest).fishToCatch;
|
||||||
|
if (getQuestData(quest).getFishCaught() < fishToCatch) {
|
||||||
getQuestData(quest).setFishCaught(getQuestData(quest).getFishCaught() + 1);
|
getQuestData(quest).setFishCaught(getQuestData(quest).getFishCaught() + 1);
|
||||||
final int fishToCatch = getCurrentStage(quest).fishToCatch;
|
final int fishToCatch = getCurrentStage(quest).fishToCatch;
|
||||||
if (getQuestData(quest).getFishCaught() == fishToCatch) {
|
if (getQuestData(quest).getFishCaught() == fishToCatch) {
|
||||||
|
Loading…
Reference in New Issue
Block a user