Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,13 @@ public bool IsUserValid(EntityUid user, out string failReason)
return false;
}

if (HasComp<MindShieldComponent>(user)
&& !HasComp<DevilComponent>(user))
{
failReason = Loc.GetString("devil-contract-mind-shielded-failed");
return false;
}
// Euphoria - Changed so Mindshield don't stop devil deals as the company doesn't own your soul
//if (HasComp<MindShieldComponent>(user)
// && !HasComp<DevilComponent>(user))
//{
// failReason = Loc.GetString("devil-contract-mind-shielded-failed");
// return false;
//}

if (HasComp<PossessedComponent>(user))
{
Expand Down
4 changes: 2 additions & 2 deletions Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
- !type:AddComponentSpecial
components:
- type: BibleUser #Lets them heal with bibles
- type: Condemned
soulOwnedNotDevil: true # This just means they won't suffer the effects of being condemned, while still not being able to sell their soul. - Goobstation
#- type: Condemned
# soulOwnedNotDevil: true # This just means they won't suffer the effects of being condemned, while still not being able to sell their soul. - Goobstation
- type: PsionicBonusChance # DeltaV - makes it more likely to become psionic.
multiplier: 3

Expand Down
4 changes: 2 additions & 2 deletions Resources/Prototypes/Roles/Jobs/Command/captain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
- type: CommandStaff
- type: PsionicBonusChance # DeltaV - makes it more likely to become psionic.
flatBonus: 0.025
- type: Condemned # Goobstation - Nanotrasen owns your soul pal.
soulOwnedNotDevil: true
#- type: Condemned # Goobstation - Nanotrasen owns your soul pal.
# soulOwnedNotDevil: true

- type: startingGear
id: CaptainGear
Expand Down
Loading