mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 04:57:57 +01:00
Bugfix: Adds a var to simple animals "player_controlled" to surpress behaviors in simple_animals that have players assigned.
Bugfix: Dead player mice won't be converted to items so they can still be revived. Bugfix: Players playing chicks won't die by developing into chickens anymore Bugfix: Fixes an edge case where a poor soul struck by multiple polymorphing shots at once ends up in a state where they can't move. Feature: Renames the wand of resurrection to the wand of healing to drive home the fact that it does the same things the staff of healing can do Balancing: Gives the wand of healing more shots. 10, 5, 5, 4 up from 3, 2, 2, 1
This commit is contained in:
@@ -177,7 +177,7 @@
|
||||
. =..()
|
||||
if(!.)
|
||||
return
|
||||
if(!stat)
|
||||
if(!stat && !player_controlled)
|
||||
amount_grown += rand(1,2)
|
||||
if(amount_grown >= 100)
|
||||
new /mob/living/simple_animal/chicken(src.loc)
|
||||
|
||||
@@ -36,9 +36,10 @@
|
||||
|
||||
/mob/living/simple_animal/mouse/Die()
|
||||
..()
|
||||
var/obj/item/trash/deadmouse/M = new(src.loc)
|
||||
M.icon_state = src.icon_dead
|
||||
del (src)
|
||||
if(!player_controlled)
|
||||
var/obj/item/trash/deadmouse/M = new(src.loc)
|
||||
M.icon_state = src.icon_dead
|
||||
del (src)
|
||||
|
||||
/mob/living/simple_animal/mouse/Crossed(AM as mob|obj)
|
||||
if( ishuman(AM) )
|
||||
|
||||
@@ -57,6 +57,8 @@
|
||||
|
||||
var/speed = 0 //LETS SEE IF I CAN SET SPEEDS FOR SIMPLE MOBS WITHOUT DESTROYING EVERYTHING. Higher speed is slower, negative speed is faster
|
||||
|
||||
var/player_controlled = 0 //Set to true if the simple animal ever had someone behind the steering wheel, even if they aren't currently
|
||||
|
||||
/mob/living/simple_animal/New()
|
||||
..()
|
||||
verbs -= /mob/verb/observe
|
||||
@@ -195,6 +197,10 @@
|
||||
adjustBruteLoss(unsuitable_atoms_damage)
|
||||
return 1
|
||||
|
||||
//Player check
|
||||
if(!player_controlled && mind)
|
||||
player_controlled = 1
|
||||
|
||||
/mob/living/simple_animal/Bumped(AM as mob|obj)
|
||||
if(!AM) return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user