mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-31 01:00:59 +01:00
Adding reset owner feature and modulus operandi ala cadyn
This commit is contained in:
@@ -35,11 +35,11 @@
|
||||
|
||||
attackby(obj/item/W, mob/user)
|
||||
if(istype(W, /obj/item/weapon/pen))
|
||||
colorindex += 1
|
||||
if(colorindex >= 6)
|
||||
colorindex = 0
|
||||
colorindex = (colorindex + 1) % 6
|
||||
icon_state = "mobcap[colorindex]"
|
||||
update_icon()
|
||||
if(istype(W, /obj/item/weapon/card/id))
|
||||
capsuleowner = null
|
||||
..()
|
||||
|
||||
/obj/item/device/buttonofnormal/proc/nonrandom() //Secret ball randmoizer rig code
|
||||
@@ -146,4 +146,4 @@
|
||||
H.resize(chaos/100)
|
||||
H.updateicon()
|
||||
else
|
||||
return 1
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user