Skip to content

Commit

Permalink
[MIRROR] Remove the Jaunter Creature from the gold slime pool (#5067)
Browse files Browse the repository at this point in the history
* Remove the Jaunter Creature from the gold slime pool (#4435)

* Remove the Jaunter Creature from the gold slime pool

* also makes the creature incompatible with the belt.

* add comments

* Slight grammar change/move the biotypes flag addition to Initialize()

In case upstream decides to change the initial flags at some point

---------

Co-authored-by: Bloop <[email protected]>

* [MIRROR] Remove the Jaunter Creature from the gold slime pool

---------

Co-authored-by: OrbisAnima <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Sep 28, 2024
1 parent 0791421 commit 2d8df6f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modular_nova/modules/modular_creatures/code/creature.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/mob/living/basic/creature
gold_core_spawnable = NO_SPAWN // we set the variable to NO_SPAWN so it doesn't appear in the gold core spawns.

/mob/living/basic/creature/Initialize(mapload)
mob_biotypes |= MOB_SPECIAL // we set the MOB_SPECIAL flag as it's one of the exceptions that bioscramblers use, without dropping the MOB_BEAST flag which interacts with the hunter weapons.
return ..()
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -7970,6 +7970,7 @@
#include "modular_nova\modules\mining_vendor_additions\code\order_mining.dm"
#include "modular_nova\modules\modsuit_armour\modsuit_armour.dm"
#include "modular_nova\modules\modsuit_pai\code\mod_pai.dm"
#include "modular_nova\modules\modular_creatures\code\creature.dm"
#include "modular_nova\modules\modular_ert\code\engineer\engineer.dm"
#include "modular_nova\modules\modular_ert\code\fumigators\ert.dm"
#include "modular_nova\modules\modular_ert\code\fumigators\fumigator.dm"
Expand Down

0 comments on commit 2d8df6f

Please sign in to comment.