summaryrefslogtreecommitdiffstats
path: root/src/WorldStorage
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-07-15 22:41:42 +0200
committermadmaxoft <github@xoft.cz>2014-07-15 22:41:42 +0200
commitcc452f51c8c4e1c886932d2f7965c7b3e4ab42fe (patch)
treea312110638939187d1e54e11761f883a22a50e1e /src/WorldStorage
parentOnly the cEntityEffect::effXXX constants are Lua-exported. (diff)
downloadcuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar.gz
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar.bz2
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar.lz
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar.xz
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.tar.zst
cuberite-cc452f51c8c4e1c886932d2f7965c7b3e4ab42fe.zip
Diffstat (limited to 'src/WorldStorage')
-rw-r--r--src/WorldStorage/NBTChunkSerializer.cpp2
-rw-r--r--src/WorldStorage/WSSAnvil.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/WorldStorage/NBTChunkSerializer.cpp b/src/WorldStorage/NBTChunkSerializer.cpp
index 82c8df947..6d0b60371 100644
--- a/src/WorldStorage/NBTChunkSerializer.cpp
+++ b/src/WorldStorage/NBTChunkSerializer.cpp
@@ -613,7 +613,7 @@ void cNBTChunkSerializer::AddProjectileEntity(cProjectileEntity * a_Projectile)
m_Writer.AddInt("EffectDuration", (Int16)Potion->GetEntityEffect().GetDuration());
m_Writer.AddShort("EffectIntensity", Potion->GetEntityEffect().GetIntensity());
m_Writer.AddDouble("EffectDistanceModifier", Potion->GetEntityEffect().GetDistanceModifier());
- m_Writer.AddInt("PotionName", Potion->GetPotionName());
+ m_Writer.AddInt("PotionName", Potion->GetPotionParticleType());
}
case cProjectileEntity::pkGhastFireball:
{
diff --git a/src/WorldStorage/WSSAnvil.cpp b/src/WorldStorage/WSSAnvil.cpp
index 0319173f8..1a43cf4ba 100644
--- a/src/WorldStorage/WSSAnvil.cpp
+++ b/src/WorldStorage/WSSAnvil.cpp
@@ -1681,7 +1681,7 @@ void cWSSAnvil::LoadSplashPotionFromNBT(cEntityList & a_Entities, const cParsedN
SplashPotion->SetEntityEffectType((cEntityEffect::eType) a_NBT.FindChildByName(a_TagIdx, "EffectType"));
SplashPotion->SetEntityEffect(cEntityEffect(EffectDuration, EffectIntensity, EffectDistanceModifier));
- SplashPotion->SetPotionName(a_NBT.FindChildByName(a_TagIdx, "PotionName"));
+ SplashPotion->SetPotionParticleType(a_NBT.FindChildByName(a_TagIdx, "PotionName"));
// Store the new splash potion in the entities list:
a_Entities.push_back(SplashPotion.release());