Skip to content

Commit

Permalink
whar
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Sep 13, 2023
1 parent 7b2915a commit 05bc88d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions code/modules/antagonists/blob/structures/core.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
update_appearance()
. = ..()

/obj/structure/blob/special/core/Destroy()
/obj/structure/blob/core/Destroy()
GLOB.blob_cores -= src
GLOB.poi_list -= src
if(overmind)
overmind.blob_core = null
overmind = null
Expand All @@ -32,17 +33,16 @@
/obj/structure/blob/core/scannerreport()
return "Directs the blob's expansion, gradually expands, and sustains nearby blob spores and blobbernauts."

/obj/structure/blob/special/core/update_overlays()
/obj/structure/blob/core/update_overlays()
. = ..()
var/mutable_appearance/blob_overlay = mutable_appearance('icons/mob/blob.dmi', "blob")
if(overmind)
blob_overlay.color = overmind.blobstrain.color
. += blob_overlay
. += mutable_appearance('icons/mob/blob.dmi', "blob_core_overlay")

/obj/structure/blob/special/core/update_appearance()
/obj/structure/blob/core/update_appearance()
color = null
GLOB.poi_list -= src
return ..()

/obj/structure/blob/core/ex_act(severity, target)
Expand Down
1 change: 0 additions & 1 deletion tools/tgs_scripts/PreCompile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,4 @@ cd ..
# compile tgui
echo "Compiling tgui..."
cd "$1"
chmod +x tools/bootstrap/node # Workaround for https://github.com/tgstation/tgstation-server/issues/1167
env TG_BOOTSTRAP_CACHE="$original_dir" TG_BOOTSTRAP_NODE_LINUX=1 CBT_BUILD_MODE="TGS" tools/bootstrap/node tools/build/build.js

0 comments on commit 05bc88d

Please sign in to comment.