SubCZ 284 Posted July 22, 2020 I'm trying to check if a quest is completed using c.getQuests().isFinished(...); The method expects an enum of type Quest, but the entire Quest enum seems to be deprecated. What's the correct way to check for this currently?
Pandemic 2842 Posted July 22, 2020 The preferred way is to use the subclasses of the new Quest interface (confusing, I know): FreeQuest, PaidQuest, and MiniQuest.
kamilo 7 Posted July 27, 2020 On 7/22/2020 at 5:37 PM, Pandemic said: The preferred way is to use the subclasses of the new Quest interface (confusing, I know): FreeQuest, PaidQuest, and MiniQuest. is this a new addition? got a tuturial on this new addition liek whats been added and everything
Pandemic 2842 Posted July 27, 2020 11 hours ago, kamilo said: is this a new addition? got a tuturial on this new addition liek whats been added and everything Not really, we just separated it from one mega file for all quests into multiple depending on the type.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.