Skip to content

Commit

Permalink
Fixes Medals (#6489)
Browse files Browse the repository at this point in the history
# About the pull request

GBP farming is so real

# Explain why it's good for the game

bug bad fixes #6488 


# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
fix: Fixes CO being unable to award medals.
/:cl:
  • Loading branch information
Diegoflores31 authored Jun 18, 2024
1 parent 73f6430 commit 1671768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/medal_awards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ GLOBAL_DATUM_INIT(ic_medals_panel, /datum/ic_medal_panel, new)
return
var/mob/living/carbon/human/user = ui.user
var/obj/item/card/id/card = user?.get_idcard()
if(card)
if(!card)
to_chat(user, SPAN_WARNING("You must have an authenticated ID Card to award medals."))
return

Expand Down

0 comments on commit 1671768

Please sign in to comment.