Quest System

This commit is contained in:
2025-01-18 20:12:50 -06:00
parent da42e2baf4
commit 0b5c3c7c9b
+2 -2
View File
@@ -11,8 +11,8 @@ import java.util.HashSet;
import java.util.Random;
public class QuestManager {
public static HashMap<PlayerCharacter,QuestObject> acceptedQuests;
public static HashMap<PlayerCharacter,ArrayList<String>> completedQuests;
public static HashMap<PlayerCharacter,QuestObject> acceptedQuests = new HashMap<>();
public static HashMap<PlayerCharacter,ArrayList<String>> completedQuests = new HashMap<>();
public static boolean grantsQuest(NPC npc){
if(npc == null)