Skip to content

Commit

Permalink
update quests ref
Browse files Browse the repository at this point in the history
also mm typo fix
  • Loading branch information
mcmonkey4eva committed Sep 23, 2022
1 parent d6ede1f commit 4d3376a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib
Submodule lib updated 1 files
+ Quests.jar
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -264,7 +264,7 @@
<dependency>
<groupId>me.blackvein</groupId>
<artifactId>quests</artifactId>
<version>4.0.1</version>
<version>4.5.3</version>
<scope>system</scope>
<systemPath>${basedir}/lib/Quests.jar</systemPath>
</dependency>
Expand Down
Expand Up @@ -120,7 +120,6 @@ public void execute(ScriptEntry scriptEntry) {
if (questId != null) {
for (Quest quest : quests.getQuests()) {
if (quest.getId().equals(questId.asString())) {

quests.getQuester(player.getPlayerEntity().getUniqueId()).takeQuest(quest, override_checks.asBoolean());
break;
}
Expand Down
Expand Up @@ -57,7 +57,7 @@ public static void registerTags() {
// @returns ElementTag
// @plugin Depenizen, MythicMobs
// @description
// Returns the value of a MythicMobs variable for this MythicMob.
// Returns the value of a MythicMobs variable for this player.
// -->
PropertyParser.registerTag(MythicMobsPlayerProperties.class, ElementTag.class, "mythic_variable", (attribute, object) -> {
return new ElementTag(MythicMobsBridge.getMythicVariable(object.player.getPlayerEntity(), attribute.getParam()), true);
Expand All @@ -69,7 +69,7 @@ public static void registerTags() {
// @plugin Depenizen, MythicMobs
// @mechanism PlayerTag.mythic_variable_map
// @description
// Returns a map of the MythicMob's variables.
// Returns a map of the player's variables.
// -->
PropertyParser.registerTag(MythicMobsPlayerProperties.class, MapTag.class, "mythic_variable_map", (attribute, object) -> {
MapTag result = new MapTag();
Expand Down

0 comments on commit 4d3376a

Please sign in to comment.