removed use of randomly unreachable function

This commit is contained in:
Lily-129 2022-02-15 14:05:21 -05:00 committed by GitHub
parent 24ca5ef90d
commit 4fc9d15d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 6 deletions

View File

@ -1228,10 +1228,6 @@ elements.ionized_polka_dotted_powder = {
hidden: true, hidden: true,
}, },
function log(b, n) {
return Math.log(n) / Math.log(b);
}
elements.hdet = { elements.hdet = {
name: "heat- dependent explosion text", name: "heat- dependent explosion text",
color: "#33aa44", color: "#33aa44",
@ -1252,10 +1248,10 @@ elements.hdet = {
temp = 20 temp = 20
pixel.temp = 20 pixel.temp = 20
} }
var r = ((Math.sqrt(log(20,temp))*(temp**0.5))/(6000**0.126284318))/2 var r = ((Math.sqrt((Math.log(temp)/Math.log(20)))*(temp**0.5))/(6000**0.126284318))/2
explodeAt(pixel.x,pixel.y,Math.floor(r)) explodeAt(pixel.x,pixel.y,Math.floor(r))
if(temp > 200) { if(temp > 200) {
if(Math.random() < log(56000,temp)**9) { if(Math.random() < (Math.log(temp)/Math.log(56000))**9) {
pixel.charge = 1 pixel.charge = 1
if(pixel.chargeCD) { if(pixel.chargeCD) {
delete pixel.chargeCD delete pixel.chargeCD