mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
To make PsiOmegaDelta happy
I hate this format. Bluh bluh huge bitch
This commit is contained in:
@@ -246,7 +246,7 @@ obj/item/weapon/gun/energy/staff/focus
|
|||||||
charge_cost = 0
|
charge_cost = 0
|
||||||
silenced = 1
|
silenced = 1
|
||||||
|
|
||||||
attack_self(mob/living/user as mob)
|
/obj/item/weapon/gun/energy/icarus/attack_self(mob/living/user as mob)
|
||||||
if(projectile_type == "/obj/item/projectile/icarus/pointdefense")
|
if(projectile_type == "/obj/item/projectile/icarus/pointdefense")
|
||||||
projectile_type = "/obj/item/projectile/icarus/guns"
|
projectile_type = "/obj/item/projectile/icarus/guns"
|
||||||
user << "You inform the Icarus to switch to the main guns."
|
user << "You inform the Icarus to switch to the main guns."
|
||||||
@@ -256,10 +256,10 @@ obj/item/weapon/gun/energy/staff/focus
|
|||||||
|
|
||||||
. = ..()
|
. = ..()
|
||||||
|
|
||||||
update_icon()
|
/obj/item/weapon/gun/energy/icarus/update_icon()
|
||||||
return
|
return
|
||||||
|
|
||||||
verb/SetIcarusAngle()
|
/obj/item/weapon/gun/energy/icarus/verb/SetIcarusAngle()
|
||||||
set src in usr
|
set src in usr
|
||||||
set name = "Set Firing Angle"
|
set name = "Set Firing Angle"
|
||||||
set desc = "Sets the angle from which the icarus will fire."
|
set desc = "Sets the angle from which the icarus will fire."
|
||||||
@@ -274,13 +274,12 @@ obj/item/weapon/gun/energy/staff/focus
|
|||||||
charge_cost = 0
|
charge_cost = 0
|
||||||
silenced = 1
|
silenced = 1
|
||||||
|
|
||||||
update_icon()
|
/obj/item/weapon/gun/energy/variable/update_icon()
|
||||||
return
|
return
|
||||||
|
|
||||||
attack_self(mob/living/user as mob)
|
/obj/item/weapon/gun/energy/variable/attack_self(mob/living/user as mob)
|
||||||
var/type = input(user,"What projectile type?","Projectile", null) as null|anything in typesof(/obj/item/projectile)
|
var/type = input(user,"What projectile type?","Projectile", null) as null|anything in typesof(/obj/item/projectile)
|
||||||
if(!type)
|
if(!type)
|
||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
projectile_type = "[type]"
|
|
||||||
. = ..()
|
. = ..()
|
||||||
|
|||||||
Reference in New Issue
Block a user