Welcome to the AFK Mods bug tracker. In order to report an issue, you need to have a VALIDATED account to post one. Once you have followed the link the registration email sent you, please select a project from the drop down menu below. Select “Open New Issue” and fill out the form with as many details as possible.

Please also consider sending your bug report to Bethesda if you are reporting on an issue with Skyrim Special Edition, Fallout 4, or Starfield. Doing so will help everyone on all platforms.

Issue Data
Status: New
Issue Type: Bug Report
Project: Unofficial Fallout 4 Patch
Component: Fallout 4: Vanilla
Category: Locations
Assigned To: Nobody
Platform: Windows PC
Severity: Low
Votes: 0
Watching: N/A
Opened By fadingsignal on Dec 16, 2015 6:12 pm
Last Edited By BlackPete on Nov 12, 2016 8:17 am

Issue #19745: Radation effect removed when fast-traveling within Glowing Sea

 


I reported this in the Bethesda bug thread as well.



While making a mod (True Storms), I discovered an issue present in the game that was initially being reported as a bug with the mod. When fast traveling between two locations within the Glowing Sea, the magic effect that gives you constant radiation damage will dispel, and you will no longer receive any rad damage until the weather changes and the spell is fired again. This can be a long time, depending, which removes much of the danger of the area.



TO REPRODUCE:

Fast travel between any two locations within the glowing sea that are in somewhat close proximity (i.e. Crater of Atom and Virgil's Cave), so too much time doesn't go by and cause a weather change.



TECHNICAL BREAKDOWN / CAUSE:



Let's use CommonwealthGSFoggy (001BD481) as the example:



* This weather, like the other weathers in this region, fires the spell GlowingSeaPlayerRadiationFoggy (0023EC95) (disease / constant effect / self)


* That spell uses the magic effect Glowing Sea Radiation (0023EC94) with conditions to only apply the spell while in the Glowing Sea Region (000E50AF)


* The spell has two keywords: RemoveBeforeFastTravel [KYWD:000210B4] and DamageTypeRadiation [KYWD:0004B25C]


* When fast traveling, the RemoveBeforeFastTravel keyword naturally applies what it says it does, and clears out the magic effect on fast travel, however, when arriving at the destination, if the weather is still the same, the trigger that fires the spell in the first place is not re-fired, and so the magic effect is not re-applied, and you can run around radiation-free.


* In my mod (which has separate copies of the radiation damage spells/effects), I got around this by removing the RemoveBeforeFastTravel keyword on the magic effect, then placing conditions for IsPlayerMoveIntoNewSpace and IsPCSleeping so it sticks on them while traveling, but stops the radiation so it doesn't build up and kill the player when they arrive at their destination. The magic effect will continue, and the spell will gracefully remove the magic effect if the player leaves the region, and when the weather changes.




The "right" way would be for Bethesda to check for spells associated with the weather, and re-fire them upon arrival if the weather has not changed, but I have a feeling that would be REALLY low on their totem pole of bug priorities.