Change refill to recharge on places
This commit is contained in:
parent
447aca3a1d
commit
f28150e486
@ -73,13 +73,13 @@
|
|||||||
$('#refillbtn').prop('disabled', false);
|
$('#refillbtn').prop('disabled', false);
|
||||||
if (placeteam == 0) {
|
if (placeteam == 0) {
|
||||||
$('#refillbtn').addClass('disabled');
|
$('#refillbtn').addClass('disabled');
|
||||||
$('#refillbtn').text("Refill");
|
$('#refillbtn').text("Recharge");
|
||||||
$('#refillbtn').prop('disabled', true);
|
$('#refillbtn').prop('disabled', true);
|
||||||
} else if (placeteam == userteamid) {
|
} else if (placeteam == userteamid) {
|
||||||
$('#refillbtn').text("Refill");
|
$('#refillbtn').text("Recharge");
|
||||||
} else {
|
} else {
|
||||||
$('#refillbtn').addClass('disabled');
|
$('#refillbtn').addClass('disabled');
|
||||||
$('#refillbtn').text("Refill");
|
$('#refillbtn').text("Recharge");
|
||||||
$('#refillbtn').prop('disabled', true);
|
$('#refillbtn').prop('disabled', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -211,13 +211,13 @@
|
|||||||
$('#refillbtn').text(data.message);
|
$('#refillbtn').text(data.message);
|
||||||
switch (Math.round(Math.random() * (3 - 1) + 1)) {
|
switch (Math.round(Math.random() * (3 - 1) + 1)) {
|
||||||
case 1:
|
case 1:
|
||||||
$('#place-log').prepend("Refilling...<br />");
|
$('#place-log').prepend("Recharging...<br />");
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
$('#place-log').prepend("Refilling..<br />");
|
$('#place-log').prepend("Recharging..<br />");
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
$('#place-log').prepend("Refilling....<br />");
|
$('#place-log').prepend("Recharging....<br />");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$('#refillbtn').text(data.message);
|
$('#refillbtn').text(data.message);
|
||||||
|
Reference in New Issue
Block a user