mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-06 15:51:02 +00:00
SVN r1248 (trunk)
This commit is contained in:
parent
b21d837b5a
commit
dd49574325
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
September 27, 2008 (Changes by Graf Zahl)
|
||||||
|
- Fixed: The translation string parser printed a broken error message.
|
||||||
|
|
||||||
September 24, 2008 (Changes by Graf Zahl)
|
September 24, 2008 (Changes by Graf Zahl)
|
||||||
- Fixed: player.colorrange didn't read the parameters correctly.
|
- Fixed: player.colorrange didn't read the parameters correctly.
|
||||||
- Reverted an 'optimization' in d_dehacked.cpp that didn't work.
|
- Reverted an 'optimization' in d_dehacked.cpp that didn't work.
|
||||||
|
|
|
@ -459,7 +459,7 @@ void FRemapTable::AddToTranslation(const char * range)
|
||||||
}
|
}
|
||||||
catch (CRecoverableError &err)
|
catch (CRecoverableError &err)
|
||||||
{
|
{
|
||||||
Printf("Error in translation '%s':\n%s\n", err.GetMessage());
|
Printf("Error in translation '%s':\n%s\n", range, err.GetMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,7 @@ ACTOR GlassShard native
|
||||||
Radius 5
|
Radius 5
|
||||||
Mass 5
|
Mass 5
|
||||||
Projectile
|
Projectile
|
||||||
-ACTIVATEMCROSS
|
-ACTIVATEPCROSS
|
||||||
-ACTIVATEIMPACT
|
-ACTIVATEIMPACT
|
||||||
+HEXENBOUNCE
|
+HEXENBOUNCE
|
||||||
BounceFactor 0.3
|
BounceFactor 0.3
|
||||||
|
|
Loading…
Reference in a new issue