Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
1.0.18.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilysen committed Aug 20, 2019
1 parent 6f4ccd0 commit e8317b1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Items/PurityTablet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,14 @@ public override bool CanUseItem(Player player)

public override bool UseItem(Player player)
{
Main.bloodMoon = false;
Main.eclipse = false;
Main.bloodMoon = false;
Main.pumpkinMoon = false;
Main.snowMoon = false;
if (Main.netMode == NetmodeID.Server)
{
NetMessage.SendData(MessageID.WorldData);
}
Main.PlaySound(SoundID.Item60.WithVolume(0.5f), player.Center);
return true;
}
Expand Down
4 changes: 4 additions & 0 deletions Items/SlateTablet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public override bool UseItem(Player player)
Main.bloodMoon = true;
Main.PlaySound(SoundID.NPCDeath10.WithVolume(.5f), player.Center);
Main.NewText("The Blood Moon is rising...", 185, 0, 30);
if (Main.netMode == NetmodeID.Server)
{
NetMessage.SendData(MessageID.WorldData);
}
return true;
}

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ You are free to decompile, modify etc. this mod under the MIT License. The mod i

# Changelog

### Aug. 20, 2019

#### 1.0.18.12

* Fixes towards multiplayer use of the two tablet types.

### Aug. 19, 2019

#### 1.0.18.11
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
author = Ilysen
version = 1.0.18.11
version = 1.0.18.12
displayName = Thaumaturgy
homepage = https://forums.terraria.org/index.php?threads/avas-mods-thaumaturgy-challenge-runes-yabssm.81892/

0 comments on commit e8317b1

Please sign in to comment.