mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-01-05 16:51:27 -08:00
Fix savegame crash
This commit is contained in:
parent
a2b1342f55
commit
b05182a1cc
2 changed files with 6 additions and 2 deletions
|
|
@ -851,7 +851,7 @@ export function formatSecondsToTimeAgo(secs) {
|
|||
if (hours <= 1) {
|
||||
return "one hour ago";
|
||||
}
|
||||
return hours + " hour ago";
|
||||
return hours + " hours ago";
|
||||
} else {
|
||||
if (days <= 1) {
|
||||
return "one day ago";
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export class ColorItem extends BaseItem {
|
|||
constructor(color) {
|
||||
super();
|
||||
this.color = color;
|
||||
this.bufferGenerator = this.internalGenerateColorBuffer.bind(this);
|
||||
this.bufferGenerator = null;
|
||||
}
|
||||
|
||||
getBackgroundColorAsResource() {
|
||||
|
|
@ -43,6 +43,10 @@ export class ColorItem extends BaseItem {
|
|||
* @param {DrawParameters} parameters
|
||||
*/
|
||||
draw(x, y, parameters, size = 12) {
|
||||
if (!this.bufferGenerator) {
|
||||
this.bufferGenerator = this.internalGenerateColorBuffer.bind(this);
|
||||
}
|
||||
|
||||
const dpi = smoothenDpi(globalConfig.shapesSharpness * parameters.zoomLevel);
|
||||
|
||||
const key = size + "/" + dpi;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue