UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

[COMPLETE] Black Gate on Non-Fel Champ Spawns

Status
Not open for further replies.

LadyCrimson

Wanderer
[COMPLETE] Black Gate on Non-Fel Champ Spawns

Problem/Bug: A gate to the Felucca starroom should not appear for nonFel champ spawns.

Fixed: for ML+ Core, tested on ML only in Tram and Felucca.

Documentation:
http://update.uo.com/design_512.html

Code:
Index: Engines/CannedEvil/ChampionSpawn.cs
===================================================================
--- Engines/CannedEvil/ChampionSpawn.cs (revision 319)
+++ Engines/CannedEvil/ChampionSpawn.cs (working copy)
@@ -397,8 +397,20 @@
 
      if( m_Altar != null )
      {
-      m_Altar.Hue = 0;
-      new StarRoomGate( true, m_Altar.Location, m_Altar.Map );
+      if (Core.ML)
+                        {
+                            if (Map == Map.Felucca)
+                            {
+                                m_Altar.Hue = 0;
+                                new StarRoomGate(true, m_Altar.Location, m_Altar.Map);
+                            }
+                            else m_Altar.Hue = 0;
+                        }
+                        else 
+                        {
+                            m_Altar.Hue = 0;
+                        new StarRoomGate(true, m_Altar.Location, m_Altar.Map);
+                        }
      }
 
      m_Champion = null;
 

psz

Administrator
Re: Black Gate on Non-Fel Champ Spawns

We may need to check to see which UO versions this is good for... I seem to recall SE not openeing black gates in non-Fel.
 

LadyCrimson

Wanderer
Re: Black Gate on Non-Fel Champ Spawns

The update date was after ML came out on the document that I used. I personally do not remember the gate at any champ other than fel cuz quite frankly, I never used it.
 
Re: Black Gate on Non-Fel Champ Spawns

If a feature is flagged ML+ only and it was also in previous expansions, it's not a problem.

It's a problem if a feature is flagged to be in previous expansions and it's not so!
 

psz

Administrator
Re: Black Gate on Non-Fel Champ Spawns

If the dox say it was for ML+, then there's no issue.
 
Re: Black Gate on Non-Fel Champ Spawns

This fix will be integrated in the ML Champ Artifacts project, to avoid collisions between patches :)
 
Status
Not open for further replies.
Top