Rectified heretic YY-MM-DD to standard YYYY-MM-DD

This commit is contained in:
minjaesong
2017-09-20 14:36:40 +09:00
parent 31c9b85d6d
commit 3726f34f11
188 changed files with 192 additions and 188 deletions

View File

@@ -1,7 +1,7 @@
package net.torvald.terrarum.gameworld
/**
* Created by minjaesong on 16-08-06.
* Created by minjaesong on 2016-08-06.
*/
object FluidCodex {
const val FLUID_LAVA = 0xFE.toByte()

View File

@@ -3,7 +3,7 @@ package net.torvald.terrarum.gameworld
import net.torvald.terrarum.virtualcomputer.tvd.ByteArray64
/**
* Created by minjaesong on 16-01-17.
* Created by minjaesong on 2016-01-17.
*/
class MapLayer(val width: Int, val height: Int) : Iterable<Byte> {

View File

@@ -1,7 +1,7 @@
package net.torvald.terrarum.gameworld
/**
* Created by minjaesong on 16-02-15.
* Created by minjaesong on 2016-02-15.
*/
class PairedMapLayer(width: Int, val height: Int) : Iterable<Byte> {

View File

@@ -11,7 +11,7 @@ import net.torvald.terrarum.blockproperties.Block
import net.torvald.terrarum.blockproperties.BlockCodex
/**
* Created by minjaesong on 16-08-03.
* Created by minjaesong on 2016-08-03.
*/
object WorldSimulator {
/**

View File

@@ -40,7 +40,7 @@ import net.torvald.terrarum.gameactors.GameDate
* - Equinox/Solstice always occur on 21st day of the month
*
*
* Created by minjaesong on 16-01-24.
* Created by minjaesong on 2016-01-24.
*/
class WorldTime(initTime: Long = 0L) {
var TIME_T = 0L // Epoch: Year 125, 1st Opal, 0h00:00 (Mondag) // 125-01-01

View File

@@ -14,7 +14,7 @@ import net.torvald.terrarum.gameactors.GameDate
*
* And there is no AM/PM concept, 22-hour clock is forced.
*
* Created by minjaesong on 16-01-24.
* Created by minjaesong on 2016-01-24.
*/
@Deprecated("Are you even reading the name?")
class YeOldeWorldTime {