diff --git a/baystation12.dme b/baystation12.dme index d6216f88f6f..d2d521b9e14 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -660,7 +660,6 @@ #include "code\game\objects\items\weapons\grenades\grenade.dm" #include "code\game\objects\items\weapons\grenades\smokebomb.dm" #include "code\game\objects\items\weapons\grenades\spawnergrenade.dm" -#include "code\game\objects\items\weapons\implants\augmentation.dm" #include "code\game\objects\items\weapons\implants\deadman.dm" #include "code\game\objects\items\weapons\implants\implant.dm" #include "code\game\objects\items\weapons\implants\implantcase.dm" diff --git a/code/game/gamemodes/events/ninja_equipment.dm b/code/game/gamemodes/events/ninja_equipment.dm index 7a906ced8c4..03ef264b20f 100644 --- a/code/game/gamemodes/events/ninja_equipment.dm +++ b/code/game/gamemodes/events/ninja_equipment.dm @@ -186,6 +186,7 @@ ________________________________________________________________________________ unlock_suit() break lock_suit(U,1)//Check for icons. + U.hud_used.human_hud('icons/mob/screen1_NinjaHUD.dmi',"#ffffff",255) U.regenerate_icons() U << "\blue Linking neural-net interface...\nPattern \green GREEN\blue, continuing operation." if(4) @@ -238,6 +239,8 @@ ________________________________________________________________________________ cancel_stealth()//Shutdowns stealth. if(4) U << "\blue Disconnecting neural-net interface...\greenSuccess\blue." + U.hud_used.instantiate() + U.regenerate_icons() if(5) U << "\blue Disengaging neural-net interface...\greenSuccess\blue." if(6) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index c66d1ba8045..a1db4b4d00c 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -1020,3 +1020,4 @@ Traitors and the like can also be revived with the previous role mostly intact. usr << "Random events disabled" message_admins("Admin [key_name_admin(usr)] has disabled random events.", 1) feedback_add_details("admin_verb","TRE") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + diff --git a/icons/mob/screen1_NinjaHUD.dmi b/icons/mob/screen1_NinjaHUD.dmi new file mode 100644 index 00000000000..d509a267687 Binary files /dev/null and b/icons/mob/screen1_NinjaHUD.dmi differ