#Expedition: Spearmaster won't get doubled points for a hidden Pearl Delivery challenge

1 messages · Page 1 of 1 (latest)

rotund trail
#

(i don't know c# very well so apologies if i'm wrong about this or the post isn't clear)

Line 71 from class PearlDeliveryChallenge: return ((ModManager.MSC && ExpeditionData.slugcatPlayer == MoreSlugcatsEnums.SlugcatStatsName.Spear) ? 50 : (30 * (int)(this.hidden ? 2f : 1f))) + this.RegionPoints();
This returns RegionPoints with 3 possibilities:

  1. +50 if the player is Spearmaster
  2. +(30*1) if the player isn't Spearmaster, and the challenge is normal
  3. +(30*2) if the player isn't Spearmaster, and the challenge is hidden
    Normally all hidden challenges are worth double points, but if a hidden challenge is Pearl Delivery points won't be doubled for Spearmaster. This seems like it shouldn't be the case, but if it is intentional please let me know.
#

also unsure if RegionPoints is intentionally not doubled for hidden challenges