mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
Tookout $stalemate
Took out noRape solar panel special Where you could kill the solar panel during a stalemate
This commit is contained in:
parent
63984711b6
commit
fbae18cbc0
|
|
@ -83,7 +83,6 @@ function CTFGame::initGameVars(%game)
|
|||
%game.notifyMineDist = 7.5;
|
||||
|
||||
%game.stalemate = false;
|
||||
$stalemate = false;
|
||||
%game.stalemateObjsVisible = false;
|
||||
%game.stalemateTimeMS = 60000;
|
||||
%game.stalemateFreqMS = 15000;
|
||||
|
|
@ -706,7 +705,6 @@ function CTFGame::hideStalemateTargets(%game)
|
|||
function CTFGame::beginStalemate(%game)
|
||||
{
|
||||
%game.stalemate = true;
|
||||
$stalemate = true;
|
||||
%game.showStalemateTargets();
|
||||
|
||||
// z0dd - ZOD, 5/27/03. Added anti-turtling, return flags after x minutes
|
||||
|
|
@ -720,7 +718,6 @@ function CTFGame::beginStalemate(%game)
|
|||
function CTFGame::endStalemate(%game)
|
||||
{
|
||||
%game.stalemate = false;
|
||||
$stalemate = false;
|
||||
%game.hideStalemateTargets();
|
||||
cancel(%game.stalemateSchedule);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue