forked from noxious/server
npm run format
This commit is contained in:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user