Merge pull request #63 from Skibbo/main

This commit is contained in:
cypress 2024-01-04 17:50:09 -05:00 committed by GitHub
commit 6a6d39d4f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,13 +155,14 @@ void() EndRound =
players = find(world, classname, "player");
while(players != world) {
if (players.ach_tracker_npnp == 0) {
GiveAchievement(5, players);
}
if (players.ach_tracker_abst == 0) {
GiveAchievement(8, players);
}
players.ach_tracker_npnp = 0;
if (rounds >= 16) {
if (players.ach_tracker_npnp == 0) {
GiveAchievement(5, players);
}
}
players = find(players, classname, "player");
}
}