Skip to content

Commit

Permalink
proper platform only
Browse files Browse the repository at this point in the history
  • Loading branch information
jnackmclain committed Feb 1, 2025
1 parent df27774 commit b2d646c
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions _ark/char/char_objects.dta
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,12 @@
)
)
($mic
{instrument find translucent.grp})
#ifdef HX_PS3
{instrument find translucent.grp}
#else
{instrument find mic.grp}
#endif
)
($mic_stand
{instrument find mic_stand.grp})
($cowbell
Expand All @@ -1738,6 +1743,7 @@
$inst
"cowbell"})
;mic teleport fix, lmao
#ifdef HX_PS3
{if $mic
{foreach $entry $mic_meshes
{if {instrument find $entry}
Expand All @@ -1764,7 +1770,20 @@
}
}
}
}})
#else
{if
$mic
{$mic set_showing $show_mic}}
{if
$mic_stand
{$mic_stand set_showing $show_mic}}
{if
$cowbell
{$cowbell set_showing $show_cowbell}}
{if
$tambourine
{$tambourine set_showing $show_tam}}
#endif}})
(game_over
{$this game_over})
(game_outro
Expand Down

0 comments on commit b2d646c

Please sign in to comment.