Skip to content

Commit

Permalink
Merge pull request #110 from MortoSasye/fluffy-birds
Browse files Browse the repository at this point in the history
Returns the fluffy raptors to Iceland
  • Loading branch information
carpotoxin authored Sep 28, 2024
2 parents b5d189f + 5c7e082 commit 8f97e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/basic/lavaland/raptor/_raptor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ GLOBAL_LIST_EMPTY(raptor_population)

/mob/living/basic/raptor/Initialize(mapload)
. = ..()
if(SSmapping.is_planetary())
if(SSmapping.config.minetype == "iceland" || SSmapping.is_planetary()) // DOPPLER STATION EDIT, old code: if(SSmapping.is_planetary())
change_offsets = FALSE
icon = 'icons/mob/simple/lavaland/raptor_icebox.dmi'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/obj/item/food/egg/raptor_egg/Initialize(mapload)
. = ..()
if(SSmapping.is_planetary())
if(SSmapping.config.minetype == "iceland" || SSmapping.is_planetary()) // DOPPLER STATION EDIT, old code: if(SSmapping.is_planetary())
icon = 'icons/mob/simple/lavaland/raptor_icebox.dmi'

/obj/item/food/egg/raptor_egg/proc/determine_growth_path(mob/living/basic/raptor/dad, mob/living/basic/raptor/mom)
Expand Down

0 comments on commit 8f97e5c

Please sign in to comment.