1
0
forked from noxious/server

npm run format

This commit is contained in:
2024-12-25 02:06:58 +01:00
parent c35e27799e
commit b4989aac26
28 changed files with 252 additions and 243 deletions

View File

@ -1,19 +1,19 @@
import { Entity, PrimaryKey, Property } from '@mikro-orm/core';
import { Entity, PrimaryKey, Property } from '@mikro-orm/core'
@Entity()
export class World {
@PrimaryKey()
date = new Date();
date = new Date()
@Property()
isRainEnabled = false;
isRainEnabled = false
@Property()
rainPercentage = 0;
rainPercentage = 0
@Property()
isFogEnabled = false;
isFogEnabled = false
@Property()
fogDensity = 0;
}
fogDensity = 0
}