Skip to content

Commit

Permalink
1.0.93.1757
Browse files Browse the repository at this point in the history
  • Loading branch information
SphereII committed Sep 26, 2024
1 parent 24068f6 commit 9038afd
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ namespace Challenges {


public class ChallengeObjectiveBlockUpgradeSCore : ChallengeObjectiveSCoreBase {
public override ChallengeObjectiveType ObjectiveType =>
(ChallengeObjectiveType)ChallengeObjectiveTypeSCore.ChallengeObjectiveBlockUpgradeSCore;

public override void HandleAddHooks() {
QuestEventManager.Current.BlockUpgrade += this.Current_BlockUpgrade;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ public override void ParseElement(XElement e) {
if (e.HasAttribute("description_key"))
LocalizationKey = e.GetAttribute("description_key");
}

public override BaseChallengeObjective Clone() {
return new ChallengeObjectiveDecapitation {
entityTag = entityTag,
entityTags = entityTags,
biome = biome,
targetName = targetName,
isTwitchSpawn = isTwitchSpawn,
killerHasBuffTag = killerHasBuffTag,
killedHasBuffTag = killedHasBuffTag,
ItemClass = ItemClass,
ItemTag = ItemTag,
StealthCheck = StealthCheck,
LocalizationKey = LocalizationKey
};
}

}
}
2 changes: 1 addition & 1 deletion Mods/0-SCore/ModInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<Description value="SCore Mod" />
<DisplayName value="0-SCore" />
<Website value="" />
<Version value="1.0.93.1534" />
<Version value="1.0.93.1757" />
</xml>
4 changes: 2 additions & 2 deletions Mods/0-SCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("20.0.*")]

[assembly: AssemblyVersion("1.0.93.1534")]
[assembly: AssemblyFileVersion("1.0.93.1534")]
[assembly: AssemblyVersion("1.0.93.1757")]
[assembly: AssemblyFileVersion("1.0.93.1757")]
5 changes: 5 additions & 0 deletions Mods/0-SCore/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ Direct Download to the 0-SCore.zip available on gitlab mirror: https://github.co
### Change Logs

[ Change Log ]
Version: 1.0.93.1757
[ Challenges ]
- Fixed an issue with Decapitation challenge
- Fixed an issue with the BlockUpgrade challenge

Version: 1.0.93.1534
[ Challenges ]
- Added another patch to protect against potential errors when loading saves
Expand Down
Binary file modified Mods/0-SCore/SCore.dll
Binary file not shown.
Binary file modified Mods/0-SCore/SCore.pdb
Binary file not shown.

0 comments on commit 9038afd

Please sign in to comment.