mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
Raging Mages: A Magistake (#9891)
Added a new gamemode, Magistake, where a group of four rookie mages take the skipjack on a joyride to the station.
Magical staves now show their ammo on the HUD.
Magic missile no longer targets fellow magic users.
Note to maintainers: This should be added to the server's config after being merged, to allow it to happen in Secret.
This commit is contained in:
@@ -187,9 +187,9 @@ proc/getsensorlevel(A)
|
||||
|
||||
/mob/living/proc/is_wizard(exclude_apprentice = FALSE)
|
||||
if(exclude_apprentice)
|
||||
return mind && mind.assigned_role == "Space Wizard"
|
||||
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Raider Mage")
|
||||
else
|
||||
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Apprentice")
|
||||
return mind && (mind.assigned_role == "Space Wizard" || mind.assigned_role == "Raider Mage" || mind.assigned_role == "Apprentice")
|
||||
|
||||
/mob/proc/is_berserk()
|
||||
return FALSE
|
||||
|
||||
Reference in New Issue
Block a user