diff options
Diffstat (limited to 'mods/counters/bothCounters.gsc')
-rwxr-xr-x | mods/counters/bothCounters.gsc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mods/counters/bothCounters.gsc b/mods/counters/bothCounters.gsc index a2f944d..3cef802 100755 --- a/mods/counters/bothCounters.gsc +++ b/mods/counters/bothCounters.gsc @@ -49,11 +49,11 @@ zombieCounter(p, l, x, y) zombies = l.zombie_total + get_current_zombie_count();
if ( zombies > 0 )
{
- p.zombiecounter.label = &"Zombies Left: ^1";
+ p.zombiecounter.label = &"Zombies: ^1";
}
else
{
- p.zombiecounter.label = &"Zombies Left: ^6";
+ p.zombiecounter.label = &"Zombies: ^6";
}
p.zombiecounter setvalue(zombies);
|