[NO GBP] The Pun Pun job trait actually removes the premapped Pun Pun (#86877)

## About The Pull Request
Yeah, I've got the `SSticker.HasRoundStarted` check wrong.

## Why It's Good For The Game
Until proven otherwise, monkeys do not reproduce by mitosis.

## Changelog

🆑
fix: The Pun Pun job trait doesn't leave behind a fake (or is it?) Pun
Pun.
/🆑
This commit is contained in:
Ghom
2024-09-26 08:57:08 +02:00
committed by GitHub
parent 49a7e2360a
commit 42ff7bf843
+2 -1
View File
@@ -258,7 +258,8 @@
/datum/station_trait/job/pun_pun/New()
. = ..()
if(!SSticker.HasRoundStarted() || !GLOB.the_one_and_only_punpun) //Make sure we don't have two Pun Puns if loaded before the start of the round.
//Make sure we don't have two Pun Puns if loaded before the start of the round.
if(SSticker.HasRoundStarted() || !GLOB.the_one_and_only_punpun)
return
new /obj/effect/landmark/start/pun_pun(GLOB.the_one_and_only_punpun.loc)
qdel(GLOB.the_one_and_only_punpun)