Skip to content

Commit

Permalink
boop
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGamerdk committed Aug 13, 2023
1 parent d322bb4 commit 2e60aed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions code/modules/cm_marines/overwatch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
return data

/obj/structure/machinery/computer/overwatch/tgui_interact(mob/user, datum/tgui/ui)
user.set_interaction(src)
if(!tacmap.map_holder)
var/level = SSmapping.levels_by_trait(tacmap.targeted_ztrait)
if(!level[1])
Expand Down Expand Up @@ -325,6 +326,7 @@

var/mob/user = usr

user.set_interaction(src)
switch(action)
if("pick_squad")
if(current_squad)
Expand Down
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/OverwatchConsole.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ const SquadMonitor = (props, context) => {
</Table.Row>
{squad_leader && (
<Table.Row key="index" bold>
<Table.Cell p="2px">
<Table.Cell collapsing p="2px">
{(squad_leader.has_helmet && (
<Button
onClick={() =>
Expand Down Expand Up @@ -493,7 +493,7 @@ const SquadMonitor = (props, context) => {

return (
<Table.Row key="index">
<Table.Cell p="2px">
<Table.Cell collapsing p="2px">
{(marine.has_helmet && (
<Button
onClick={() =>
Expand Down

0 comments on commit 2e60aed

Please sign in to comment.