Fix: remove unused meat.js, edit chocomae description, update files

This commit is contained in:
2019-12-12 15:14:51 +09:00
parent ce0ffc62fc
commit db05c2f2d7
6 changed files with 18 additions and 356 deletions
+3 -3
View File
@@ -10,9 +10,9 @@ function MeatBase() {
this.initMeatTypeVariables();
this.initMouseEventHandler();
this.whiteSmokeParticle = new Smoke(Meat.DONENESS_RARE, 0, 0);
this.redSmokeParticle = new Smoke(Meat.DONENESS_WELLDONE, 0, 0);
this.blackSmokeParticle = new Smoke(Meat.DONENESS_BURN_BLACK, 0, 0);
this.whiteSmokeParticle = new Smoke(MeatBase.DONENESS_RARE, 0, 0);
this.redSmokeParticle = new Smoke(MeatBase.DONENESS_WELLDONE, 0, 0);
this.blackSmokeParticle = new Smoke(MeatBase.DONENESS_BURN_BLACK, 0, 0);
}
MeatBase.prototype.update = function() {