Skip to content

Commit

Permalink
Merge pull request #5 from prooheckcp/ConvertToLuau
Browse files Browse the repository at this point in the history
Version 0.1.3
  • Loading branch information
prooheckcp authored Dec 18, 2024
2 parents 93daae1 + 0189e91 commit 59eebb4
Show file tree
Hide file tree
Showing 53 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions RoQuest/Client/init.lua → RoQuest/Client/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -982,14 +982,26 @@ function RoQuestClient:_OnPlayerDataChanged(playerQuestData: PlayerQuestData)
self._PlayerQuestData = playerQuestData

for questId: string, questProgress: QuestProgress in playerQuestData.InProgress do
if not self._StaticQuests[questId] then
continue
end

self:_GiveQuest(questId, questProgress)
end

for questId: string, questProgress: QuestProgress in playerQuestData.Completed do
if not self._StaticQuests[questId] then
continue
end

self:_GiveQuest(questId, questProgress)
end

for questId: string, questProgress: QuestProgress in playerQuestData.Delivered do
if not self._StaticQuests[questId] then
continue
end

self:_GiveQuest(questId, questProgress)
end

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "prooheckcp/roquest"
description = "RoQuest is a sophisticated abstract implementation of a Quest System. Although it can self manage nearly everything it also allows for the developer to manually set and manage everything. API: prooheckcp.github.io/RoQuest/"
version = "0.1.2"
version = "0.1.3"
license = "MIT"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
Expand Down

0 comments on commit 59eebb4

Please sign in to comment.